mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 18:48:24 -04:00
Selecting a branding just takes you to a new page, it doesn’t change any state. Links are generally the way you go from one page to another on the web.
32 lines
971 B
HTML
32 lines
971 B
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/live-search.html" import live_search %}
|
|
|
|
{% block service_page_title %}
|
|
Email branding
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<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>
|
|
{{ 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>
|
|
|
|
{% endblock %}
|