Browse Source

sileht's changes to display phone and email on main admin page

root 7 years ago
parent
commit
5a150e4072
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wifiwithme/apps/contribmap/admin.py

+ 1 - 1
wifiwithme/apps/contribmap/admin.py

@@ -14,7 +14,7 @@ admin.site.site_title = "Wifi with me"
 @admin.register(Contrib)
 class ContribAdmin(admin.ModelAdmin):
     search_fields = ["name", "email", "phone"]
-    list_display = ("name", "date",)
+    list_display = ("name", "date", "phone", "email")
 
     fieldsets = [
         [None, {