mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-24 00:07:02 -04:00
Changes the selector the live search in the set email and letter branding pages in service settings and organisation settings. The current one targeted the old radios HTML whereas this version targets the same for the GOVUK Frontend radios.
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer, sticky_page_footer %}
|
|
{% from "components/live-search.html" import live_search %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% set page_title = "Set email branding" %}
|
|
|
|
{% block service_page_title %}
|
|
{{ page_title }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(
|
|
page_title,
|
|
back_link=url_for('.service_settings', service_id=current_service.id)
|
|
) }}
|
|
{% call form_wrapper(data_kwargs={'preview-type': 'email'}) %}
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-full preview-pane">
|
|
</div>
|
|
</div>
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-full">
|
|
{{ live_search(
|
|
target_selector='.govuk-radios__item',
|
|
show=True,
|
|
form=search_form,
|
|
label='Search branding styles by name',
|
|
autofocus=True
|
|
) }}
|
|
{{ form.branding_style }}
|
|
</div>
|
|
</div>
|
|
{{ sticky_page_footer('Preview') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|