From d53c5707b88078738a13606079a1483b2badd18e Mon Sep 17 00:00:00 2001 From: moanos Date: Fri, 11 Jul 2025 17:34:55 +0200 Subject: [PATCH] feat: remove notification bell that might not get displayed --- src/fellchensammlung/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/mail.py b/src/fellchensammlung/mail.py index 94c0c46..211844a 100644 --- a/src/fellchensammlung/mail.py +++ b/src/fellchensammlung/mail.py @@ -35,7 +35,7 @@ def mail_admins_new_report(report): def send_notification_email(notification_pk): notification = Notification.objects.get(pk=notification_pk) - subject = f"🔔 {notification.title}" + subject = f"{notification.title}" context = {"notification": notification, } if notification.notification_type == NotificationTypeChoices.NEW_REPORT_COMMENT or notification.notification_type == NotificationTypeChoices.NEW_REPORT_AN: context["user_comment"] = notification.report.user_comment