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