Browse Source

Use search_fields and list_filter on ModelAdmin classes to make features easier to test (for things like accessibility) (#262)

Andy Babic 5 năm trước cách đây
mục cha
commit
ef50e188e1
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      bakerydemo/base/wagtail_hooks.py

+ 6 - 0
bakerydemo/base/wagtail_hooks.py

@@ -25,14 +25,17 @@ class BreadIngredientAdmin(ModelAdmin):
     # These stub classes allow us to put various models into the custom "Wagtail Bakery" menu item
     # rather than under the default Snippets section.
     model = BreadIngredient
+    search_fields = ('name', )
 
 
 class BreadTypeAdmin(ModelAdmin):
     model = BreadType
+    search_fields = ('title', )
 
 
 class BreadCountryAdmin(ModelAdmin):
     model = Country
+    search_fields = ('title', )
 
 
 class BreadModelAdminGroup(ModelAdminGroup):
@@ -47,10 +50,13 @@ class PeopleModelAdmin(ModelAdmin):
     menu_label = 'People'  # ditch this to use verbose_name_plural from model
     menu_icon = 'fa-users'  # change as required
     list_display = ('first_name', 'last_name', 'job_title', 'thumb_image')
+    list_filter = ('job_title', )
+    search_fields = ('first_name', 'last_name', 'job_title')
 
 
 class FooterTextAdmin(ModelAdmin):
     model = FooterText
+    search_fields = ('body',)
 
 
 class BakeryModelAdminGroup(ModelAdminGroup):