+
-
-
+
+
diff --git a/user/forms.py b/user/forms.py
index de2e31f9..8793b952 100644
--- a/user/forms.py
+++ b/user/forms.py
@@ -25,7 +25,7 @@ class UserNotificationForm(BaseForm):
help_text=_("Select the situations when you want to receive a notification"),
widget=forms.CheckboxSelectMultiple(
attrs={
- "class": "no-bullets",
+ "class": "list-unstyled",
}
),
choices=[]
@@ -35,6 +35,7 @@ class UserNotificationForm(BaseForm):
super().__init__(*args, **kwargs)
self.user = user
self.form_title = _("Edit notifications")
+ self.form_caption = _("")
self.action_url = reverse("user:notifications")
self.cancel_redirect = reverse("user:index")