adds appAccountToken for admin search

main
Laurent 8 months ago
parent faa8d41ed3
commit d48a03320e
  1. 4
      subscriptions/admin.py

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

Loading…
Cancel
Save