8 lines
249 B
Python
8 lines
249 B
Python
from django.contrib import admin
|
|
from .models import Notification
|
|
|
|
|
|
@admin.register(Notification)
|
|
class NotificationAdmin(admin.ModelAdmin):
|
|
list_display = ["user", "title", "type", "is_read", "created_at"]
|
|
list_filter = ["is_read", "type"]
|