mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 17:45:32 -04:00
- Convert previous/next navigation to USWDS pagination component - Update radio buttons and checkboxes to use USWDS classes - Migrate guest list inputs with proper USWDS styling - Replace GOV.UK button patterns with USWDS button variants - Update form field spacing to use USWDS utilities - Scope fieldset legend styles to specific form contexts - Update visual regression test references for new components
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import sticky_page_footer %}
|
|
{% from "components/live-search.html" import live_search %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
|
{% from "components/radios.html" import radios %}
|
|
|
|
{% set page_title = "Link service to organization" %}
|
|
|
|
{% block service_page_title %}
|
|
{{ page_title }}
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ usaBackLink({ "href": url_for('.service_settings', service_id=current_service.id) }) }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(page_title) }}
|
|
{{ live_search(
|
|
target_selector='.usa-radio',
|
|
show=True, form=search_form,
|
|
label='Search by name',
|
|
autofocus=True
|
|
) }}
|
|
{% call form_wrapper(data_force_focus=True) %}
|
|
{% if has_organizations %}
|
|
<div class="organizations-radios">
|
|
{{ radios(form.organizations) }}
|
|
</div>
|
|
{{ sticky_page_footer('Save') }}
|
|
{% else %}
|
|
<p class="hint"> No organizations </p>
|
|
{% endif %}
|
|
{% endcall %}
|
|
{% endblock %}
|