fix field name

main
Laurent 8 months ago
parent b8567c1cf7
commit 23b5ab8440
  1. 2
      subscriptions/admin.py

@ -2,7 +2,7 @@ from django.contrib import admin
from .models import ASSNotification
class ASSNotificationAdmin(admin.ModelAdmin):
list_display = ['notificationType', 'subtype', 'signedDate', 'productId', 'transactionId', 'offer_identifier', 'price', 'currency']
list_display = ['notificationType', 'subtype', 'signedDate', 'productId', 'transactionId', 'offerIdentifier', 'price', 'currency']
search_fields = ['transactionId']
list_filter = ['offer_identifier', 'notificationType', 'subtype']
ordering = ['-signedDate']

Loading…
Cancel
Save