mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 21:49:37 -04:00
Includes updates to the controller so branding_type is got from the email_branding model instead of from user input. Follows on from: https://github.com/alphagov/notifications-admin/pull/2249
36 lines
1.0 KiB
HTML
36 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 %}
|
|
|
|
{% block service_page_title %}
|
|
Set email branding
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Set email branding</h1>
|
|
<form method="post">
|
|
<div class="grid-row">
|
|
<div class="column-full preview-pane">
|
|
</div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="column-full">
|
|
{{ live_search(target_selector='.brand_styles .multiple-choice', show=show_search_box, form=search_form, label='Search branding styles by name') }}
|
|
{{ radios(form.branding_style) }}
|
|
</div>
|
|
</div>
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
{{ page_footer(
|
|
'Preview',
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %}
|