mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-17 05:40:25 +00:00
12 lines
440 B
Python
12 lines
440 B
Python
from django.contrib import admin
|
|
|
|
|
|
class AbstractNotificationAdmin(admin.ModelAdmin):
|
|
raw_id_fields = ('recipient',)
|
|
list_display = ('recipient', 'actor',
|
|
'level', 'target', 'unread', 'public')
|
|
list_filter = ('level', 'unread', 'public', 'timestamp',)
|
|
|
|
def get_queryset(self, request):
|
|
qs = super(AbstractNotificationAdmin, self).get_queryset(request)
|
|
return qs.prefetch_related('actor')
|