mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-06 06:41:00 +00:00
9 lines
211 B
Python
9 lines
211 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.contrib import admin
|
|
from notifications.models import Notification
|
|
|
|
class NotificationAdmin(admin.ModelAdmin):
|
|
pass
|
|
|
|
admin.site.register(Notification, NotificationAdmin)
|