Merge branch 'guntherweissenbaeck/issue63'
This commit is contained in:
commit
8c27709802
17 changed files with 199 additions and 4 deletions
15
app/contact/admin.py
Normal file
15
app/contact/admin.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from .models import Contact
|
||||
|
||||
|
||||
@admin.register(Contact)
|
||||
class FallenBirdAdmin(admin.ModelAdmin):
|
||||
list_display = [
|
||||
"name",
|
||||
"phone",
|
||||
"email",
|
||||
"address",
|
||||
"comment",
|
||||
]
|
||||
list_filter = ("name", "phone", "email", "address", "comment")
|
Loading…
Add table
Add a link
Reference in a new issue