@@ -12,7 +12,12 @@ def __init__(self, *args, **kwargs):
1212 super ().__init__ (* args , ** kwargs )
1313 self .fields ["expiration_date" ].help_text = "By default, announcements expire after two weeks. To change this, click in the box above."
1414
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+ )
1621
1722 self .fields ["notify_email_all" ].help_text = (
1823 "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):
4146 super ().__init__ (* args , ** kwargs )
4247 self .fields ["expiration_date" ].help_text = "By default, announcements expire after two weeks. To change this, click in the box above."
4348
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+ )
4555
4656 self .fields ["notify_email_all_resend" ].help_text = (
4757 "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):
105115
106116 def __init__ (self , * args , ** kwargs ):
107117 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+ )
109124 self .fields ["notify_email_all" ].help_text = (
110125 "This will send an email notification to all of the users who can see this post. This option "
111126 "does NOT take users' email notification preferences into account, so please use with care."
0 commit comments