Files
notifications-admin/app/templates/views/service-settings/link-service-to-organization.html
Jonathan Bobel c19083b04e Merge branch 'main' of https://github.com/GSA/notifications-admin into 718-clean-up-components-section
# Conflicts:
#	app/templates/components/components/footer/_footer.scss
#	app/templates/components/components/hint/_hint.scss
#	app/templates/views/service-settings/data-retention.html
#	app/templates/views/service-settings/sms-senders.html
#	app/templates/views/two-factor-webauthn.html
#	app/templates/views/user-profile/security-keys.html
2023-08-31 12:06:55 -04:00

36 lines
1.0 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 %}
{% 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() %}
{% if has_organizations %}
{{ form.organizations }}
{{ sticky_page_footer('Save') }}
{% else %}
<p class="hint"> No organizations </p>
{% endif %}
{% endcall %}
{% endblock %}