|
|
|
|
@ -3,8 +3,8 @@ from .models import ASSNotification |
|
|
|
|
|
|
|
|
|
class ASSNotificationAdmin(admin.ModelAdmin): |
|
|
|
|
list_display = ['notificationType', 'subtype', 'signedDate', 'transactionId', 'price'] |
|
|
|
|
search_fields = ('first_name', 'last_name') |
|
|
|
|
search_fields = ('transactionId') |
|
|
|
|
list_filter = [] |
|
|
|
|
ordering = ['last_name', 'first_name'] |
|
|
|
|
ordering = ['-signedDate'] |
|
|
|
|
|
|
|
|
|
admin.site.register(ASSNotification, ASSNotificationAdmin) |
|
|
|
|
|