You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
notify=forms.CharField(max_length=255, help_text="List of email addresses to receive state notifications, separated by comma", label="Notification list", required=False)
37
+
notify=forms.CharField(max_length=255, help_text="List of email addresses to receive state notifications, separated by comma.", label="Notification list", required=False)
message=forms.CharField(widget=forms.Textarea, help_text="Leave blank to change state without notifying the Secretariat", required=False, label=mark_safe("Message to the Secretariat"))
37
-
comment=forms.CharField(widget=forms.Textarea, help_text="Optional comment for the charter history", required=False)
36
+
message=forms.CharField(widget=forms.Textarea, help_text="Leave blank to change state without notifying the Secretariat.", required=False, label=mark_safe("Message to the Secretariat"))
37
+
comment=forms.CharField(widget=forms.Textarea, help_text="Optional comment for the charter history.", required=False)
38
38
def__init__(self, *args, **kwargs):
39
39
self.hide=kwargs.pop('hide', None)
40
40
group=kwargs.pop('group')
@@ -225,9 +225,9 @@ def state_pk(slug):
225
225
context_instance=RequestContext(request))
226
226
227
227
classChangeTitleForm(forms.Form):
228
-
charter_title=forms.CharField(widget=forms.TextInput, label="Charter title", help_text="Enter new charter title", required=True)
229
-
message=forms.CharField(widget=forms.Textarea, help_text="Leave blank to change the title without notifying the Secretariat", required=False, label=mark_safe("Message to Secretariat"))
230
-
comment=forms.CharField(widget=forms.Textarea, help_text="Optional comment for the charter history", required=False)
228
+
charter_title=forms.CharField(widget=forms.TextInput, label="Charter title", help_text="Enter new charter title.", required=True)
229
+
message=forms.CharField(widget=forms.Textarea, help_text="Leave blank to change the title without notifying the Secretariat.", required=False, label=mark_safe("Message to Secretariat"))
230
+
comment=forms.CharField(widget=forms.Textarea, help_text="Optional comment for the charter history.", required=False)
new_state=forms.ModelChoiceField(queryset=State.objects.filter(used=True), label='State', help_text=u"Only select 'Submitted to IESG for Publication' to correct errors. Use the document's main page to request publication.")
1312
1312
weeks=forms.IntegerField(label='Expected weeks in state',required=False)
1313
-
comment=forms.CharField(widget=forms.Textarea, required=False, help_text="Optional comment for the document history")
1313
+
comment=forms.CharField(widget=forms.Textarea, required=False, help_text="Optional comment for the document history.")
announcement_text=forms.CharField(widget=forms.Textarea, label="Status Change Announcement", help_text="Edit the announcement message", required=True)
309
+
announcement_text=forms.CharField(widget=forms.Textarea, label="Status Change Announcement", help_text="Edit the announcement message.", required=True)
310
310
label=None
311
311
312
312
def__init__(self, *args, **kwargs):
@@ -436,12 +436,12 @@ def clean(self):
436
436
returnclean_helper(self,EditStatusChangeForm)
437
437
438
438
classStartStatusChangeForm(forms.Form):
439
-
document_name=forms.CharField(max_length=255, label="Document name", help_text="A descriptive name such as status-change-md2-to-historic is better than status-change-rfc1319", required=True)
439
+
document_name=forms.CharField(max_length=255, label="Document name", help_text="A descriptive name such as status-change-md2-to-historic is better than status-change-rfc1319.", required=True)
patent_info=forms.CharField(max_length=255,widget=forms.Textarea, required=False, help_text="Patent, Serial, Publication, Registration, or Application/File number(s), Date(s) granted or applied for, Country, and any additional notes")
116
+
patent_info=forms.CharField(max_length=255,widget=forms.Textarea, required=False, help_text="Patent, Serial, Publication, Registration, or Application/File number(s), Date(s) granted or applied for, Country, and any additional notes.")
updates=SearchableIprDisclosuresField(required=False, help_text="If this disclosure <strong>updates</strong> other disclosures identify here which ones. Leave this field blank if this disclosure does not update any prior disclosures. <strong>Note</strong>: Updates to IPR disclosures must only be made by authorized representatives of the original submitters. Updates will automatically be forwarded to the current Patent Holder's Contact and to the Submitter of the original IPR disclosure.")
@@ -233,7 +233,7 @@ class Meta:
233
233
exclude= [ 'by','docs','state','rel' ]
234
234
235
235
classMessageModelForm(forms.ModelForm):
236
-
response_due=DatepickerDateField(date_format="yyyy-mm-dd", picker_settings={"autoclose": "1" }, required=False, help_text='The date which a response is due')
236
+
response_due=DatepickerDateField(date_format="yyyy-mm-dd", picker_settings={"autoclose": "1" }, required=False, help_text='The date which a response is due.')
0 commit comments