Remove list filter from Assignments and Survey pages

This commit is contained in:
Lorenz Padberg 2022-07-27 16:30:13 +02:00
parent 7a77ae6eb2
commit dc7c80fbd9
2 changed files with 0 additions and 2 deletions

View File

@ -7,7 +7,6 @@ class AssignmentAdmin(ModelAdmin):
menu_label = 'Assignments' menu_label = 'Assignments'
list_display = ('title', 'module', 'assignment') list_display = ('title', 'module', 'assignment')
search_fields = ('title', 'assignment') search_fields = ('title', 'assignment')
list_filter = ('module', )
menu_icon = 'form' menu_icon = 'form'

View File

@ -7,7 +7,6 @@ class SurveyAdmin(ModelAdmin):
menu_label = 'Surveys' menu_label = 'Surveys'
list_display = ('title', 'module') list_display = ('title', 'module')
search_fields = ('title', 'module__meta_title') search_fields = ('title', 'module__meta_title')
list_filter = ('module', )
menu_icon = 'help' menu_icon = 'help'