2018-02-08 12:19:21 +00:00
|
|
|
{% extends "views/platform-admin/_base_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 %}
|
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 %}
|
|
|
|
|
|
2019-04-29 11:44:05 +01:00
|
|
|
{{ page_header(
|
|
|
|
|
'New organisation',
|
|
|
|
|
back_link=url_for('.organisations')
|
|
|
|
|
) }}
|
|
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper() %}
|
2018-02-12 09:26:13 +00:00
|
|
|
{{textbox(form.name)}}
|
2019-04-29 11:44:05 +01:00
|
|
|
{{ page_footer('Save') }}
|
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 %}
|