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
Merged in [8609] from tterriberry@mozilla.com, with minor changes:
Allow changing the title of a charter document.
Fixesietf-tools#1334
- Legacy-Id: 8635
Note: SVN reference [8609] has been migrated to Git commit 63d919e
Copy file name to clipboardExpand all lines: ietf/doc/views_charter.py
+55Lines changed: 55 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,61 @@ 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