Rename additional details

This commit is contained in:
zandercymatics 2024-04-18 11:00:56 -06:00
parent 644ca4638a
commit 2122ff8239
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 4 additions and 5 deletions

View file

@ -213,7 +213,7 @@ class DomainInformation(TimeStampedModel):
null=True, null=True,
blank=True, blank=True,
help_text="Anything else?", help_text="Anything else?",
verbose_name="Additional Details", verbose_name="Additional details",
) )
cisa_representative_email = models.EmailField( cisa_representative_email = models.EmailField(

View file

@ -644,7 +644,7 @@ class DomainRequest(TimeStampedModel):
null=True, null=True,
blank=True, blank=True,
help_text="Anything else?", help_text="Anything else?",
verbose_name="Additional Details", verbose_name="Additional details",
) )
cisa_representative_email = models.EmailField( cisa_representative_email = models.EmailField(

View file

@ -16,7 +16,7 @@ and condense down into one subsection) -->
margin-top-0 margin-bottom-05 margin-top-0 margin-bottom-05
padding-right-1" padding-right-1"
> >
Additional Details Additional details
</h2> </h2>
{% if domainRequest is not none %} {% if domainRequest is not none %}

View file

@ -91,7 +91,7 @@ class DomainRequestWizard(DomainRequestWizardPermissionView, TemplateView):
Step.PURPOSE: _("Purpose of your domain"), Step.PURPOSE: _("Purpose of your domain"),
Step.YOUR_CONTACT: _("Your contact information"), Step.YOUR_CONTACT: _("Your contact information"),
Step.OTHER_CONTACTS: _("Other employees from your organization"), Step.OTHER_CONTACTS: _("Other employees from your organization"),
Step.ADDITIONAL_DETAILS: _("Additional Details"), Step.ADDITIONAL_DETAILS: _("Additional details"),
Step.REQUIREMENTS: _("Requirements for operating a .gov domain"), Step.REQUIREMENTS: _("Requirements for operating a .gov domain"),
Step.REVIEW: _("Review and submit your domain request"), Step.REVIEW: _("Review and submit your domain request"),
} }
@ -582,7 +582,6 @@ class OtherContacts(DomainRequestWizard):
return all_forms_valid return all_forms_valid
# DONE-NL: rename this to "Additional Details" (note: this is a find-replace job. VS will not refactor properly)
class AdditionalDetails(DomainRequestWizard): class AdditionalDetails(DomainRequestWizard):
template_name = "domain_request_additional_details.html" template_name = "domain_request_additional_details.html"