Skip to content

Commit

Permalink
update template
Browse files Browse the repository at this point in the history
  • Loading branch information
jenriordan committed Feb 6, 2025
1 parent 61ffcc9 commit d2cc2e6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1 class="govuk-panel__title">Submission complete</h1>
{% endif %}

<p class="govuk-body">
<a href="{% url 'download_application' %}?reference={{ request.session.licence_reference }}" class="govuk-link" target="_blank">Download and view application (opens in new tab)</a>
<a href="{% url 'download_application' %}?reference={{ request.session.licence_reference }}" class="govuk-link" target="_blank">Download application</a>
</p>

<h2 class="govuk-heading-m">What happens next</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,16 @@ <h3 class="govuk-heading-s">Recipient {{ forloop.counter }}</h3>
{{ recipient.name }}
<br><br>
{{ recipient.readable_address }}</dt></div>
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Website:</strong> {{ recipient.website }}<br></dt></div>
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Additional contact information:</strong> {{ recipient.additional_contact_details|linebreaksbr }}</dt></div>
{% if recipient.website %}
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Website:</strong> {{ recipient.website }}<br></dt></div>
{% endif %}
{% if recipient.additional_contact_details %}
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Additional contact information:</strong> {{ recipient.additional_contact_details|linebreaksbr }}</dt></div>
{% endif %}
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Relationship between the provider of the services and the recipient:</strong> {{ recipient.relationship_provider }}</dt></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% block title %}View Licence Application{% endblock title %}
{% block download_link %}
<div class="govuk-grid-column-one-half govuk-!-text-align-right govuk-!-margin-top-3 hide-on-print">
<a href="{% url 'view_a_licence:download_application' %}?reference={{ licence.reference }}" class="govuk-link--muted govuk-body-s" target="_blank">Download and view application (opens in new tab)</a>
<a href="{% url 'view_a_licence:download_application' %}?reference={{ licence.reference }}" class="govuk-link--muted govuk-body-s" target="_blank">Download application</a>
</div>
{% endblock download_link %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,16 @@ <h3 class="govuk-heading-s">Recipient {{ forloop.counter }}</h3>
{{ recipient.name }}
<br><br>
{{ recipient.readable_address }}</dt></div>
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Website:</strong> {{ recipient.website }}<br></dt></div>
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Additional contact information:</strong> {{ recipient.additional_contact_details|linebreaksbr }}</dt></div>
{% if recipient.website %}
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Website:</strong> {{ recipient.website }}<br></dt></div>
{% endif %}
{% if recipient.additional_contact_details %}
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Additional contact information:</strong> {{ recipient.additional_contact_details|linebreaksbr }}</dt></div>
{% endif %}
<div class="govuk-summary-list__row">
<dt class="govuk-summary-list__key govuk-!-font-weight-regular">
<strong>Relationship between the provider of the services and the recipient:</strong> {{ recipient.relationship_provider }}</dt></div>
Expand Down

0 comments on commit d2cc2e6

Please sign in to comment.