Something went wrong. Try again.
A Django application to deliver user notifications made with django-snitch using WebSockets.
Something went wrong. Try again.
277 B · 9 lines
Python
at main
12345678910from django.contrib import admin
from websocket_notifications.models import NotificationGroup
@admin.register(NotificationGroup)class NotificationGroupAdmin(admin.ModelAdmin): list_display = ["id", "user", "code", "created"] search_fields = ["code", "user__email"]