有没有办法把删除按钮放在左边
is there a way to put delete button on the left side
有没有办法把删除按钮放在左边?我尝试使用 ordering
但它不起作用,因为 delete 不是 model
的一部分
这是我的 admin.py
class CategoryInline(admin.TabularInline):
model = Category
extra = 0
class SurveyAdmin(admin.ModelAdmin):
list_display = ("name", "is_published")
inlines = [CategoryInline, QuestionInline]
“删除?”部分被硬编码为在此 admin template.
中的字段之后
您必须覆盖此管理模板才能对其进行更改。 This section 在文档中解释了如何覆盖管理模板。
基本上,您需要复制 this template 并将其保存在 <YOUR-APP-DIR>/templates/admin/edit_inline/tabular.html
下。然后你可以编辑它来移动“删除?”列到前面。
有没有办法把删除按钮放在左边?我尝试使用 ordering
但它不起作用,因为 delete 不是 model
这是我的 admin.py
class CategoryInline(admin.TabularInline):
model = Category
extra = 0
class SurveyAdmin(admin.ModelAdmin):
list_display = ("name", "is_published")
inlines = [CategoryInline, QuestionInline]
“删除?”部分被硬编码为在此 admin template.
中的字段之后您必须覆盖此管理模板才能对其进行更改。 This section 在文档中解释了如何覆盖管理模板。
基本上,您需要复制 this template 并将其保存在 <YOUR-APP-DIR>/templates/admin/edit_inline/tabular.html
下。然后你可以编辑它来移动“删除?”列到前面。