2019-07-02 09:49:00 +01:00
|
|
|
{% extends "withoutnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2018-02-08 12:19:21 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-02-14 13:08:44 +00:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
2019-07-01 10:19:33 +01:00
|
|
|
{% from "components/radios.html" import radios %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2018-02-08 12:19:21 +00:00
|
|
|
|
2018-02-08 15:41:31 +00:00
|
|
|
{% block per_page_title %}
|
2019-07-01 10:19:33 +01:00
|
|
|
New organisation
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2019-07-02 09:49:00 +01:00
|
|
|
{% block fullwidth_content %}
|
|
|
|
|
<div id="content">
|
|
|
|
|
<div class="navigation-service">
|
2019-06-21 14:12:19 +01:00
|
|
|
<a href="{{ url_for('.organisations') }}" class="navigation-service-back-to">All organisations</a>
|
2019-07-02 09:49:00 +01:00
|
|
|
<a href="{{ url_for('main.choose_account') }}" class="navigation-service-switch">Switch service</a>
|
|
|
|
|
</div>
|
2018-02-08 12:19:21 +00:00
|
|
|
|
2019-07-02 09:49:00 +01:00
|
|
|
<main role="main">
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-one-quarter">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="column-three-quarters">
|
|
|
|
|
{{ page_header('New organisation') }}
|
|
|
|
|
{% call form_wrapper() %}
|
|
|
|
|
{{textbox(form.name)}}
|
|
|
|
|
{{radios(form.organisation_type)}}
|
|
|
|
|
{{radios(form.crown_status)}}
|
|
|
|
|
{{ page_footer('Save') }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
2018-02-12 09:26:13 +00:00
|
|
|
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|