mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-17 05:40:25 +00:00
10 lines
272 B
Python
10 lines
272 B
Python
import swapper
|
|
from django.contrib import admin
|
|
from notifications.base.admin import AbstractNotificationAdmin
|
|
|
|
Notification = swapper.load_model('notifications', 'Notification')
|
|
|
|
|
|
@admin.register(Notification)
|
|
class NotificationAdmin(AbstractNotificationAdmin):
|
|
pass
|