From 9e19384898c41c209b11baf0b2893ca1db85b3e0 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 28 Feb 2025 12:08:44 +0100 Subject: [PATCH] fix field name --- subscriptions/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subscriptions/admin.py b/subscriptions/admin.py index 82d35d8..c79d373 100644 --- a/subscriptions/admin.py +++ b/subscriptions/admin.py @@ -4,7 +4,7 @@ from .models import ASSNotification class ASSNotificationAdmin(admin.ModelAdmin): list_display = ['notificationType', 'subtype', 'signedDate', 'productId', 'transactionId', 'offerIdentifier', 'price', 'currency'] search_fields = ['transactionId'] - list_filter = ['offer_identifier', 'notificationType', 'subtype'] + list_filter = ['offerIdentifier', 'notificationType', 'subtype'] ordering = ['-signedDate'] admin.site.register(ASSNotification, ASSNotificationAdmin)