@@ -12,7 +12,12 @@ def __init__(self, *args, **kwargs):
12
12
super ().__init__ (* args , ** kwargs )
13
13
self .fields ["expiration_date" ].help_text = "By default, announcements expire after two weeks. To change this, click in the box above."
14
14
15
- self .fields ["notify_post" ].help_text = "If this box is checked, students who have signed up for notifications will receive an email."
15
+ self .fields ["notify_post" ].help_text = (
16
+ "If this box is checked, students who have signed up for email "
17
+ "notifications will receive an email "
18
+ "and those who have signed up for push notifications will receive a "
19
+ "push notification."
20
+ )
16
21
17
22
self .fields ["notify_email_all" ].help_text = (
18
23
"This will send an email notification to all of the users who can see this post. This option "
@@ -41,7 +46,12 @@ def __init__(self, *args, **kwargs):
41
46
super ().__init__ (* args , ** kwargs )
42
47
self .fields ["expiration_date" ].help_text = "By default, announcements expire after two weeks. To change this, click in the box above."
43
48
44
- self .fields ["notify_post_resend" ].help_text = "If this box is checked, students who have signed up for notifications will receive an email."
49
+ self .fields ["notify_post_resend" ].help_text = (
50
+ "If this box is checked, students who have signed up for email "
51
+ "notifications will receive an email "
52
+ "and those who have signed up for push notifications will "
53
+ "receive a push notification."
54
+ )
45
55
46
56
self .fields ["notify_email_all_resend" ].help_text = (
47
57
"This will resend an email notification to all of the users who can see this post. This option "
@@ -105,7 +115,12 @@ class AnnouncementAdminForm(forms.Form):
105
115
106
116
def __init__ (self , * args , ** kwargs ):
107
117
super ().__init__ (* args , ** kwargs )
108
- self .fields ["notify_post" ].help_text = "If this box is checked, students who have signed up for notifications will receive an email."
118
+ self .fields ["notify_post" ].help_text = (
119
+ "If this box is checked, students who have signed up for email "
120
+ "notifications will receive an email "
121
+ "and those who have signed up for push notifications will receive a "
122
+ "push notification."
123
+ )
109
124
self .fields ["notify_email_all" ].help_text = (
110
125
"This will send an email notification to all of the users who can see this post. This option "
111
126
"does NOT take users' email notification preferences into account, so please use with care."
0 commit comments