added a missing comma in the Department model admin list filter function

parent 852c803a
...@@ -7,7 +7,7 @@ class DepartmentAdmin(admin.ModelAdmin): ...@@ -7,7 +7,7 @@ class DepartmentAdmin(admin.ModelAdmin):
model = Department model = Department
search_fields = ("dept_name", "home_unit",) search_fields = ("dept_name", "home_unit",)
list_display = ("dept_name", "home_unit",) list_display = ("dept_name", "home_unit",)
list_filter = ("dept_name") list_filter = ("dept_name",)
# admin panel for WidgetUser model # admin panel for WidgetUser model
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment