feat: updated notification admin (#33320)

This commit is contained in:
Muhammad Adeel Tajamul
2023-09-25 11:14:32 +05:00
committed by GitHub
parent 6b262e7957
commit 8c9232ace9

View File

@@ -3,17 +3,61 @@ Django Admin for Notifications
"""
from django.contrib import admin
from django.utils.translation import gettext_lazy as _
from .base_notification import COURSE_NOTIFICATION_APPS, COURSE_NOTIFICATION_TYPES
from .models import CourseNotificationPreference, Notification
class NotificationAppNameListFilter(admin.SimpleListFilter):
"""
Shows list filter in django admin of notification apps
"""
title = _("Notification App")
parameter_name = "app_name"
def lookups(self, request, model_admin):
lookup_list = [
(app_name, app_name)
for app_name in COURSE_NOTIFICATION_APPS.keys()
]
return lookup_list
def queryset(self, request, queryset):
app_name = self.value()
if app_name not in COURSE_NOTIFICATION_APPS.keys():
return queryset
return queryset.filter(app_name=app_name)
class NotificationTypeListFilter(admin.SimpleListFilter):
"""
Shows list filter in django admin of notification types
"""
title = _("Notification Type")
parameter_name = "notification_type"
def lookups(self, request, model_admin):
lookup_list = [
(notification_type, notification_type)
for notification_type in COURSE_NOTIFICATION_TYPES.keys()
]
return lookup_list
def queryset(self, request, queryset):
notification_type = self.value()
if notification_type not in COURSE_NOTIFICATION_TYPES.keys():
return queryset
return queryset.filter(notification_type=notification_type)
class NotificationAdmin(admin.ModelAdmin):
"""
Admin for Notifications
"""
raw_id_fields = ('user',)
search_fields = ('course_id', 'user__username')
list_filter = ('app_name',)
search_fields = ('course_id', 'app_name', 'notification_type', 'user__username')
list_filter = (NotificationAppNameListFilter, NotificationTypeListFilter)
class CourseNotificationPreferenceAdmin(admin.ModelAdmin):