mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-09 10:54:11 -04:00
it wouldn't show search if there were under a certain amount of letter or email branding options - however we know there will always be more than that amount so lets remove some complexity. Also, rename the SearchTemplatesForm because it can search anything - it just prompts you to search by name is all.
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/live-search.html" import live_search %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% block service_page_title %}
|
|
Set email branding
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Set email branding</h1>
|
|
{% call form_wrapper() %}
|
|
<div class="grid-row">
|
|
<div class="column-full preview-pane">
|
|
</div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="column-full">
|
|
{{ live_search(target_selector='.multiple-choice', show=True, form=search_form, label='Search branding styles by name') }}
|
|
{{ radios(form.branding_style) }}
|
|
</div>
|
|
</div>
|
|
<div class="js-stick-at-bottom-when-scrolling">
|
|
{{ page_footer(
|
|
'Preview',
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|