From d9fa887f1f69727d679068b8a640dd8548c952fe Mon Sep 17 00:00:00 2001 From: Greg Wood Date: Thu, 14 Nov 2024 12:34:25 -0500 Subject: [PATCH] fix: clarify "Replace" in I-D submission form #8205 update quote syntax issue on previous update help text In the "Replacement Information" section of the "Status" tab to fix #8059 --- ietf/submit/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/submit/forms.py b/ietf/submit/forms.py index e465199b582..0d83193ee9f 100644 --- a/ietf/submit/forms.py +++ b/ietf/submit/forms.py @@ -502,7 +502,7 @@ def clean_name(self): return name class ReplacesForm(forms.Form): - replaces = SearchableDocumentsField(required=False, help_text="An I-D submission will be automatically attached to the previous version of the I-D with the same name, or assigned "-00" version if no previous version exists. If this submission is intended to replace an I-D with a different name (e.g. when an individual I-D is adopted as a Working Group document), please enter that name here. (Approval required to replace an I-D for which you are not an author.)") + replaces = SearchableDocumentsField(required=False, help_text='An I-D submission will be automatically attached to the previous version of the I-D with the same name, or assigned "-00" version if no previous version exists. If this submission is intended to replace an I-D with a different name (e.g. when an individual I-D is adopted as a Working Group document), please enter that name here. (Approval required to replace an I-D for which you are not an author.)') def __init__(self, *args, **kwargs): self.name = kwargs.pop("name")