updated application review page and application summary in emails

This commit is contained in:
David Kennedy 2024-01-19 06:47:01 -05:00
parent 5e1f99eae6
commit 96a13040bf
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
2 changed files with 13 additions and 7 deletions

View file

@ -78,11 +78,16 @@
<ul class="add-list-reset margin-bottom-105">
<li>{{ application.requested_domain.name|default:"Incomplete" }}</li>
</ul>
<ul class="add-list-reset">
{% for site in application.alternative_domains.all %}
<li>{{ site.website }}</li>
{% endfor %}
</ul>
{% if application.alternative_domains.all %}
<div class="margin-bottom-105">
<p class="text-semibold margin-top-1 margin-bottom-0">Alternative domains</p>
<ul class="add-list-reset">
{% for site in application.alternative_domains.all %}
<li>{{ site.website }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %}
{% if step == Step.PURPOSE %}
{{ application.purpose|default:"Incomplete" }}

View file

@ -21,9 +21,10 @@ Current website for your organization: {% for site in application.current_websit
{% spaceless %}{{ site.website }}{% endspaceless %}
{% endfor %}{% endif %}
.gov domain:
{{ application.requested_domain.name }}
{{ application.requested_domain.name }}{% if application.alternative_domains.all %}
Alternative domains:
{% for site in application.alternative_domains.all %}{% spaceless %}{{ site.website }}{% endspaceless %}
{% endfor %}
{% endfor %}{% endif %}
Purpose of your domain:
{{ application.purpose }}