You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
450 B
10 lines
450 B
from django.contrib import admin
|
|
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']
|
|
ordering = ['-signedDate']
|
|
|
|
admin.site.register(ASSNotification, ASSNotificationAdmin)
|
|
|