mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 18:07:02 +00:00
15 lines
381 B
Python
15 lines
381 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']
|
|
list_filter = ['notification_type']
|
|
search_fields = ['notification_to']
|