mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-19 16:04:38 +02:00
updated application review page and application summary in emails
This commit is contained in:
parent
5e1f99eae6
commit
96a13040bf
2 changed files with 13 additions and 7 deletions
|
@ -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>
|
||||||
|
{% 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">
|
<ul class="add-list-reset">
|
||||||
{% for site in application.alternative_domains.all %}
|
{% for site in application.alternative_domains.all %}
|
||||||
<li>{{ site.website }}</li>
|
<li>{{ site.website }}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if step == Step.PURPOSE %}
|
{% if step == Step.PURPOSE %}
|
||||||
{{ application.purpose|default:"Incomplete" }}
|
{{ application.purpose|default:"Incomplete" }}
|
||||||
|
|
|
@ -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 }}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue