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"> <ul class="add-list-reset margin-bottom-105">
<li>{{ application.requested_domain.name|default:"Incomplete" }}</li> <li>{{ application.requested_domain.name|default:"Incomplete" }}</li>
</ul> </ul>
<ul class="add-list-reset"> {% if application.alternative_domains.all %}
{% for site in application.alternative_domains.all %} <div class="margin-bottom-105">
<li>{{ site.website }}</li> <p class="text-semibold margin-top-1 margin-bottom-0">Alternative domains</p>
{% endfor %} <ul class="add-list-reset">
</ul> {% for site in application.alternative_domains.all %}
<li>{{ site.website }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %} {% endif %}
{% if step == Step.PURPOSE %} {% if step == Step.PURPOSE %}
{{ application.purpose|default:"Incomplete" }} {{ 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 %} {% spaceless %}{{ site.website }}{% endspaceless %}
{% endfor %}{% endif %} {% endfor %}{% endif %}
.gov domain: .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 %} {% for site in application.alternative_domains.all %}{% spaceless %}{{ site.website }}{% endspaceless %}
{% endfor %} {% endfor %}{% endif %}
Purpose of your domain: Purpose of your domain:
{{ application.purpose }} {{ application.purpose }}