Added extra filtering options for Project model/admin
This commit is contained in:
@@ -12,3 +12,4 @@ atlassian-*
|
|||||||
__pycache__
|
__pycache__
|
||||||
.venv/
|
.venv/
|
||||||
build
|
build
|
||||||
|
.vscode
|
||||||
|
|||||||
@@ -85,8 +85,8 @@ class ProjectAdmin(SortableAdmin):
|
|||||||
CreditInline, NoteInline, GenericNoteInline,
|
CreditInline, NoteInline, GenericNoteInline,
|
||||||
NonSortableCreditInline, NonSortableNoteInline
|
NonSortableCreditInline, NonSortableNoteInline
|
||||||
]
|
]
|
||||||
list_display = ['__str__', 'category']
|
list_display = ['__str__', 'category', 'isApproved',]
|
||||||
list_filter = ('category__title',)
|
list_filter = ('category__title', 'isApproved',)
|
||||||
after_sorting_js_callback_name = 'afterSortCallback'
|
after_sorting_js_callback_name = 'afterSortCallback'
|
||||||
search_fields = ['title']
|
search_fields = ['title']
|
||||||
sortable_change_list_template = 'adminsortable/custom_change_list.html'
|
sortable_change_list_template = 'adminsortable/custom_change_list.html'
|
||||||
|
|||||||
Reference in New Issue
Block a user