sorted imports
This commit is contained in:
parent
c108965792
commit
51e824f879
6 changed files with 21 additions and 11 deletions
|
@ -5,7 +5,13 @@ from .models import Bird, FallenBird
|
|||
|
||||
@admin.register(FallenBird)
|
||||
class ContractAdmin(admin.ModelAdmin):
|
||||
list_display = ["bird", "date_found", "place", "created", "updated", "user"]
|
||||
list_display = [
|
||||
"bird",
|
||||
"date_found",
|
||||
"place",
|
||||
"created",
|
||||
"updated",
|
||||
"user"]
|
||||
list_filter = ("bird", "created", "user")
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue