Files
notifications-admin/app/templates/views/email-branding/select-branding.html
Tom Byers eb64033ff3 Update selection radios before edit/create new
They were already using the 'name' field in their
label but we don't want any other part of the
branding to appear now.
2018-08-14 14:18:16 +01:00

27 lines
646 B
HTML

{% extends "views/platform-admin/_base_template.html" %}
{% from "components/radios.html" import radios %}
{% from "components/page-footer.html" import page_footer %}
{% block service_page_title %}
Select email branding
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">
<div>Select an email branding to update</div>
<div>or create a new email branding</div>
</h1>
<div class="grid-row">
<div class="column-three-quarters">
<form method="post">
{{ radios(form.email_branding) }}
{{ page_footer(
'Next'
) }}
</form>
</div>
</div>
{% endblock %}