Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Dec 10, 2023
1 parent 1ef0948 commit 80e6582
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion core/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,13 @@ class QrCodeAdmin(admin.ModelAdmin):
]
readonly_fields = ["url", "key", "image_tag"]
list_display = ["location", "url"]
list_filter = ("hunt__name", ("hunt__name", admin.EmptyFieldListFilter,))
list_filter = (
"hunt__name",
(
"hunt__name",
admin.EmptyFieldListFilter,
),
)
inlines = [HintsInLine]
form = QrCodeAdminForm

Expand Down

0 comments on commit 80e6582

Please sign in to comment.