Skip to content

Commit

Permalink
add option to filter by period in short rebates
Browse files Browse the repository at this point in the history
  • Loading branch information
mittal-ishaan committed Oct 29, 2024
1 parent 024812a commit 18b055c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion home/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,13 @@ class about_Admin(ImportExportModelAdmin, admin.ModelAdmin):
"email__email",
"email__name",
)
list_filter = ("approved", "date_applied", "start_date", "end_date")
list_filter = (
"approved",
"date_applied",
"start_date",
"end_date",
"allocation_id__period",
)
list_display = (
"date_applied",
"email",
Expand Down

0 comments on commit 18b055c

Please sign in to comment.