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