From 2d4ef7d69f8d35fb60bb8a4dd0f2619712c96d55 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 27 Feb 2025 17:58:41 +0100 Subject: [PATCH] admin change --- subscriptions/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subscriptions/admin.py b/subscriptions/admin.py index 3206dc3..43fbd4b 100644 --- a/subscriptions/admin.py +++ b/subscriptions/admin.py @@ -2,7 +2,7 @@ from django.contrib import admin from .models import ASSNotification class ASSNotificationAdmin(admin.ModelAdmin): - list_display = ['notificationType', 'subtype', 'productId', 'transactionId', 'offer_identifier', 'price', 'currency'] + list_display = ['notificationType', 'subtype', 'signedDate', 'productId', 'transactionId', 'offer_identifier', 'price', 'currency'] search_fields = ['transactionId'] list_filter = ['offer_identifier', 'notificationType', 'subtype'] ordering = ['-signedDate']