mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-09 22:14:43 +02:00
Making field labels consistent (#551)
* Making field labels consistent * Update field label * Make field labels consistent * Make field labels consistent
This commit is contained in:
parent
2c0dac98b5
commit
4af6a37c42
3 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@ class Migration(migrations.Migration):
|
||||||
name="more_organization_information",
|
name="more_organization_information",
|
||||||
field=models.TextField(
|
field=models.TextField(
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="Further information about the government organization",
|
help_text="More information about your organization",
|
||||||
null=True,
|
null=True,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -293,7 +293,7 @@ class DomainApplication(TimeStampedModel):
|
||||||
choices=OrganizationChoices.choices,
|
choices=OrganizationChoices.choices,
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="Type of Organization",
|
help_text="Type of organization",
|
||||||
)
|
)
|
||||||
|
|
||||||
federally_recognized_tribe = models.BooleanField(
|
federally_recognized_tribe = models.BooleanField(
|
||||||
|
@ -382,7 +382,7 @@ class DomainApplication(TimeStampedModel):
|
||||||
more_organization_information = models.TextField(
|
more_organization_information = models.TextField(
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="Further information about the government organization",
|
help_text="More information about your organization",
|
||||||
)
|
)
|
||||||
|
|
||||||
authorizing_official = models.ForeignKey(
|
authorizing_official = models.ForeignKey(
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if domainapplication.organization_name %}
|
{% if domainapplication.organization_name %}
|
||||||
{% include "includes/summary_item.html" with title='Organization address' value=domainapplication address='true' %}
|
{% include "includes/summary_item.html" with title='Organization name and mailing address' value=domainapplication address='true' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if domainapplication.type_of_work %}
|
{% if domainapplication.type_of_work %}
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if domainapplication.more_organization_information %}
|
{% if domainapplication.more_organization_information %}
|
||||||
{% include "includes/summary_item.html" with title='Further information about the government organization' value=domainapplication.more_organization_information %}
|
{% include "includes/summary_item.html" with title='More information about your organization' value=domainapplication.more_organization_information %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if domainapplication.authorizing_official %}
|
{% if domainapplication.authorizing_official %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue