making anything else page format more consistent

This commit is contained in:
Kristina Yin 2023-11-29 08:44:13 -08:00
parent cff5e39a17
commit c328e05398
No known key found for this signature in database
GPG key ID: 9BB3845BB3A21584
4 changed files with 4 additions and 4 deletions

View file

@ -620,7 +620,7 @@ class NoOtherContactsForm(RegistrarForm):
class AnythingElseForm(RegistrarForm):
anything_else = forms.CharField(
required=False,
label="Anything else we should know? (optional)",
label="Anything else we should know?",
widget=forms.Textarea(),
validators=[
MaxLengthValidator(

View file

@ -543,7 +543,7 @@ class DomainApplication(TimeStampedModel):
anything_else = models.TextField(
null=True,
blank=True,
help_text="Anything else we should know? (optional)",
help_text="Anything else we should know?",
)
is_policy_acknowledged = models.BooleanField(

View file

@ -190,7 +190,7 @@ class DomainInformation(TimeStampedModel):
anything_else = models.TextField(
null=True,
blank=True,
help_text="Anything else we should know? (optional)",
help_text="Anything else we should know?",
)
is_policy_acknowledged = models.BooleanField(

View file

@ -2,7 +2,7 @@
{% load field_helpers %}
{% block form_instructions %}
<p>Is there anything else we should know about your domain request?</p>
<h2>Is there anything else we should know about your domain request? (optional)</h2>
{% endblock %}
{% block form_required_fields_help_text %}