2017-08-02 12:50:01 +01:00
|
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
2018-08-09 15:50:07 +01:00
|
|
|
{% from "components/radios.html" import radios %}
|
2017-07-28 15:17:50 +01:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-08-15 20:35:45 +01:00
|
|
|
{% from "components/live-search.html" import live_search %}
|
2017-07-28 15:17:50 +01:00
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2018-08-23 08:56:36 +01:00
|
|
|
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
|
|
|
|
2018-08-23 08:56:36 +01:00
|
|
|
<div class="grid-row bottom-gutter-2-3">
|
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
<h1 class="heading-large">Email branding</h1>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="column-one-third">
|
|
|
|
|
<a href="{{ url_for('.create_email_branding') }}" class="button align-with-heading">Add new brand</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2018-08-23 09:14:01 +01:00
|
|
|
{{ live_search(target_selector='.message-name', show=show_search_box, form=search_form) }}
|
|
|
|
|
<nav>
|
|
|
|
|
{% for id, name in email_brandings %}
|
|
|
|
|
<div class="message-name">
|
|
|
|
|
<a href="{{ url_for('.update_email_branding', branding_id=id) }}">
|
|
|
|
|
{{name}}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</nav>
|
2017-07-28 15:17:50 +01:00
|
|
|
|
|
|
|
|
{% endblock %}
|