organisation dashboard page

This commit is contained in:
chrisw
2018-02-19 16:56:16 +00:00
parent c1e3658a8f
commit dd2231056d
11 changed files with 144 additions and 47 deletions
@@ -0,0 +1,25 @@
{% extends "views/platform-admin/_base_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/textbox.html" import textbox %}
{% block per_page_title %}
Create an organisation
{% endblock %}
{% block service_page_title %}
Create an organisation
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">Create an organisation</h1>
<form method="post">
{{textbox(form.name)}}
{{ page_footer(
'Save',
back_link=url_for('.organisations'),
back_link_text='Back to organisations',
) }}
</form>
{% endblock %}
@@ -3,16 +3,16 @@
{% from "components/textbox.html" import textbox, colour_textbox %}
{% block per_page_title %}
{{ '{} an organisation'.format('Update' if organisation else 'Create')}}
Update an organisation
{% endblock %}
{% block service_page_title %}
{{ '{} an organisation'.format('Update' if organisation else 'Create')}}
Update an organisation
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">{{ '{} an organisation'.format('Update' if organisation else 'Create')}}</h1>
<h1 class="heading-large">Update an organisation</h1>
<form method="post">
{{textbox(form.name)}}
{{ page_footer(
@@ -0,0 +1,17 @@
{% extends "org_template.html" %}
{% block service_page_title %}
Team members
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row bottom-gutter">
<div class="column-two-thirds">
<h1 class="heading-large">
Team members
</h1>
</div>
</div>
{% endblock %}