mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-16 21:30:24 +00:00
13 lines
390 B
Python
13 lines
390 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.contrib import admin
|
|
from .models import Notification
|
|
|
|
|
|
class NotificationAdmin(admin.ModelAdmin):
|
|
raw_id_fields = ('recipient', )
|
|
list_display = ('recipient', 'actor',
|
|
'level', 'target', 'unread', 'public')
|
|
list_filter = ('level', 'unread', 'public', 'timestamp', )
|
|
|
|
admin.site.register(Notification, NotificationAdmin)
|