mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-17 21:19:38 -04:00
Telling people to ask if they want a different logo doesn’t make sense if they don’t have one at all.
46 lines
1.5 KiB
HTML
46 lines
1.5 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block service_page_title %}
|
||
Letter branding
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Letter branding</h1>
|
||
<div class="grid-row">
|
||
<div class="column-three-quarters">
|
||
{% if current_service.letter_branding_id %}
|
||
<p>
|
||
Your letters have the {{ current_service.letter_branding.name }} logo.
|
||
</p>
|
||
<p>
|
||
<a href="{{ url_for('main.feedback', ticket_type='ask-question-give-feedback', body='letter-branding') }}">Contact support</a>
|
||
if you want to use a different logo.
|
||
</p>
|
||
{% else %}
|
||
<p>
|
||
Your letters do not have a logo.
|
||
</p>
|
||
<p>
|
||
<a href="{{ url_for('main.feedback', ticket_type='ask-question-give-feedback', body='letter-branding') }}">Contact support</a>
|
||
if you want to add your organisation’s logo.
|
||
</p>
|
||
{% endif %}
|
||
{% if from_template %}
|
||
{{ page_footer(
|
||
back_link=url_for('.view_template', service_id=current_service.id, template_id=from_template),
|
||
back_link_text='Back to template'
|
||
) }}
|
||
{% else %}
|
||
{{ page_footer(
|
||
back_link=url_for('.service_settings', service_id=current_service.id),
|
||
back_link_text='Back to settings'
|
||
) }}
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|