mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-22 16:20:23 +00:00
14 lines
428 B
Python
14 lines
428 B
Python
''' Django notifications admin file '''
|
|
# -*- 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)
|