mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-11 07:38:56 +00:00
13 lines
301 B
Python
13 lines
301 B
Python
"""
|
|
notification admin file
|
|
"""
|
|
from django.contrib import admin
|
|
|
|
from notifications.models import Notification
|
|
|
|
|
|
@admin.register(Notification)
|
|
class NotificationAdmin(admin.ModelAdmin):
|
|
"""Notification Admin"""
|
|
list_display = ['id', 'notification_type', 'notification_to', 'data', 'is_read']
|