Fix filters order. Close #15
This commit is contained in:
parent
dc9634fb5f
commit
dcb783095c
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class BookAdmin(ExportMixin, admin.ModelAdmin):
|
|||
list_display = ['level', 'field', 'title', 'authors', 'editor', 'publication_year', 'isbn',
|
||||
'price', 'previously_acquired', 'teacher', 'done']
|
||||
list_editable = ['done']
|
||||
list_filter = ['done', 'editor', 'previously_acquired', 'teacher', 'level']
|
||||
list_filter = ['done', 'previously_acquired', 'level', 'editor', 'teacher']
|
||||
list_display_links = ['title']
|
||||
fieldsets = [
|
||||
('Infos livre', {
|
||||
|
|
Loading…
Reference in a new issue