mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 18:18:26 -04:00
Does two main things: - defines what ‘brands’ we support, in terms of the ID that DVLA use - adds a form to choose which branding a service uses (currently platform admin only, like email branding) By doing this we will be able to (with some more work) preview and send letters with a variety of different branding. Story: https://www.pivotaltracker.com/story/show/143506905
26 lines
681 B
HTML
26 lines
681 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/radios.html" import radios, branding_radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Set letter branding
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Set letter branding</h1>
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
<form method="post">
|
|
{{ radios(form.dvla_org_id) }}
|
|
{{ page_footer(
|
|
'Save',
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|