Files
notifications-admin/app/templates/views/organisations/add-organisation.html

27 lines
671 B
HTML
Raw Normal View History

{% 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 %}
{% from "components/form.html" import form_wrapper %}
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
{% endblock %}
{% block platform_admin_content %}
2018-02-14 13:08:44 +00:00
<h1 class="heading-large">Create an organisation</h1>
{% 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',
) }}
{% endcall %}
2018-02-12 09:26:13 +00:00
{% endblock %}