2018-02-08 12:19:21 +00:00
|
|
|
{% extends "views/platform-admin/_base_template.html" %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-02-14 13:08:44 +00:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
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 %}
|
2018-02-14 13:08:44 +00:00
|
|
|
Create an organisation
|
2018-02-08 15:41:31 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2018-02-14 16:13:11 +00:00
|
|
|
{% block org_page_title %}
|
2018-02-14 13:08:44 +00:00
|
|
|
Create an organisation
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
|
|
2018-02-14 13:08:44 +00:00
|
|
|
<h1 class="heading-large">Create an organisation</h1>
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper() %}
|
2018-02-12 09:26:13 +00:00
|
|
|
{{textbox(form.name)}}
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
'Save',
|
|
|
|
|
back_link=url_for('.organisations'),
|
|
|
|
|
back_link_text='Back to organisations',
|
|
|
|
|
) }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2018-02-12 09:26:13 +00:00
|
|
|
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|