mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 14:19:50 -04:00
Because some people don’t know they can put their own logo on letters: > The HM Government Logo is at the top of the letter and we can't see > a way of putting the [organisation] logo on > We are intending to use the letter template feature for the first time > and wondered whether the branding is configurable or whether the HM > Government header is the standard default. > Can we replace HM Government logo with our own in the letter? IF yes, > then how? > I don't seem to be able to set the branding on the letters to be > [organisation]. it's always HM government. Is there something that > needs enabling for this account? No-one actually wants the HM Government logo (no-one is sending real letters using it). So we should leave the space blank and put a button there prompting people to add their own logo.
40 lines
1.2 KiB
HTML
40 lines
1.2 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">
|
|
<p>
|
|
{% if current_service.letter_branding_id %}
|
|
Your letters have the {{ current_service.letter_branding.name }} logo.
|
|
{% else %}
|
|
Your letters have no logo.
|
|
{% endif %}
|
|
</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>
|
|
{% 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 %}
|