Features:
1) Add "created" and "modified" fields to list_filter in CategoryAdmin; Fixes: (none); Extra: (none);
This commit is contained in:
parent
ed16a4fd3d
commit
60c70e50f2
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ class CategoryChildrenInline(admin.TabularInline):
|
|||
class CategoryAdmin(DraggableMPTTAdmin, BasicModelAdmin):
|
||||
mptt_indent_field = "name"
|
||||
list_display = ("indented_title", "parent", "is_active", "modified")
|
||||
list_filter = ("is_active", "parent", "level")
|
||||
list_filter = ("is_active", "level", "created", "modified")
|
||||
list_display_links = ("indented_title",)
|
||||
search_fields = (
|
||||
"uuid",
|
||||
|
|
|
|||
Loading…
Reference in a new issue