Skip to content

Commit

Permalink
enhance admin, let user filter on status_code
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentporte committed Feb 10, 2025
1 parent 7c33e90 commit 84f5990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lacommunaute/notification/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@admin.register(EmailSentTrack)
class EmailSentTrackAdmin(admin.ModelAdmin):
list_display = ("kind", "created", "status_code")
list_filter = ("kind",)
list_filter = ("kind", "status_code")


class BaseNotificationListFilter(admin.SimpleListFilter):
Expand Down

0 comments on commit 84f5990

Please sign in to comment.