mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-02 18:54:42 +00:00
11 lines
273 B
Python
11 lines
273 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
|