Add filter to CompetitionCategory model

This commit is contained in:
Gregory Trullemans 2024-04-16 11:09:25 +02:00
parent 46bc94bed1
commit 015b89466e
1 changed files with 4 additions and 0 deletions

View File

@ -323,3 +323,7 @@ class CompetitionCategoryAdmin(admin.ModelAdmin):
"age_min",
"age_max",
)
list_filter = (
"age_min",
"age_max",
)