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
Copy file name to clipboardExpand all lines: ietf/doc/views_charter.py
+54Lines changed: 54 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,60 @@ def state_pk(slug):
224
224
),
225
225
context_instance=RequestContext(request))
226
226
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<br> Secretariat"))
230
+
comment=forms.CharField(widget=forms.Textarea, help_text="Optional comment for the charter history", required=False)
0 commit comments