From a96c99b9e401514a72dd01787b3aedb1ee855544 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Mon, 19 Dec 2022 07:20:56 +0000 Subject: [PATCH] Remove dot in notifications title --- core/views/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/views/notifications.py b/core/views/notifications.py index fbd00f1..1c9d031 100644 --- a/core/views/notifications.py +++ b/core/views/notifications.py @@ -11,7 +11,7 @@ class NotificationsUpdate(LoginRequiredMixin, ObjectUpdate): model = NotificationSettings form_class = NotificationSettingsForm - page_title = "Update your notification settings." + page_title = "Update your notification settings" page_subtitle = ( "At least the topic must be set if you want to receive notifications." )