Files
notifications-admin/app/templates/views/email-branding/select-branding.html

27 lines
720 B
HTML
Raw Normal View History

2017-08-02 12:50:01 +01:00
{% extends "views/platform-admin/_base_template.html" %}
2017-07-28 15:17:50 +01:00
{% from "components/radios.html" import radios, branding_radios %}
{% from "components/page-footer.html" import page_footer %}
{% block service_page_title %}
2018-02-07 10:30:49 +00:00
Select email branding
2017-07-28 15:17:50 +01:00
{% endblock %}
2017-08-02 12:50:01 +01:00
{% block platform_admin_content %}
2017-07-28 15:17:50 +01:00
<h1 class="heading-large">
2018-02-07 10:30:49 +00:00
<div>Select an email branding to update</div>
<div>or create a new email branding</div>
2017-07-28 15:17:50 +01:00
</h1>
<div class="grid-row">
<div class="column-three-quarters">
<form method="post">
2018-02-07 10:30:49 +00:00
{{ branding_radios(form.email_branding, branding_dict=branding_dict, show_header=False) }}
2017-07-28 15:17:50 +01:00
{{ page_footer(
'Next'
) }}
</form>
</div>
</div>
{% endblock %}