2017-08-02 12:50:01 +01:00
|
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
2017-07-28 15:17:50 +01:00
|
|
|
{% from "components/radios.html" import radios, branding_radios %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
|
|
|
|
Select organisation
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2017-08-02 12:50:01 +01:00
|
|
|
{% block platform_admin_content %}
|
2017-07-28 15:17:50 +01:00
|
|
|
|
|
|
|
|
<h1 class="heading-large">
|
|
|
|
|
<div>Select an organisation to update</div>
|
|
|
|
|
<div>or create a new organisation</div>
|
|
|
|
|
</h1>
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-three-quarters">
|
|
|
|
|
<form method="post">
|
|
|
|
|
{{ branding_radios(form.organisation, branding_dict=branding_dict, show_header=False) }}
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
'Next'
|
|
|
|
|
) }}
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|