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

28 lines
663 B
HTML
Raw Normal View History

{% extends "views/platform-admin/_base_template.html" %}
{% from "components/page-header.html" import page_header %}
{% 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 %}
{{ page_header(
'New organisation',
back_link=url_for('.organisations')
) }}
{% call form_wrapper() %}
2018-02-12 09:26:13 +00:00
{{textbox(form.name)}}
{{ page_footer('Save') }}
{% endcall %}
2018-02-12 09:26:13 +00:00
{% endblock %}