Files
zod-backend/notifications/admin.py
2023-07-19 17:00:58 +05:30

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']