mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
11 lines
274 B
Python
11 lines
274 B
Python
from django.contrib import admin
|
|
from unfold.admin import ModelAdmin
|
|
|
|
from .models import Notification
|
|
|
|
|
|
@admin.register(Notification)
|
|
class NotificationAdmin(ModelAdmin):
|
|
model = Notification
|
|
search_fields = ("id", "content")
|
|
list_display = ["id", "dismissed"]
|