Files
notifications-admin/app/templates/views/organisations/add-nhs-local-organisation.html
Chris Hill-Scott 8b8893ed1d Let NHS Trusts and CCGs choose own organisation
All we do via support is ask which organisation they work for and
manually assign their service to it. This commit makes that process self
service.

We think we have all the trusts and clinical commissioning groups
loaded into the database now.

This will make the go live process smoother for these teams.
2019-09-06 16:26:51 +01:00

27 lines
991 B
HTML

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import sticky_page_footer %}
{% from "components/textbox.html" import textbox %}
{% from "components/radios.html" import radios %}
{% from "components/live-search.html" import live_search %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
Accept our data sharing and financial agreement
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Accept our data sharing and financial agreement',
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
) }}
{% call form_wrapper() %}
<p>
{{ form.organisations.label.text }}
</p>
{{ live_search(target_selector='.multiple-choice', show=True, form=search_form, label='Search by name') }}
{{ radios(form.organisations, hide_legend=True) }}
{{ sticky_page_footer('Continue') }}
{% endcall %}
{% endblock %}