mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 18:37:33 -04:00
organisation dashboard page
This commit is contained in:
@@ -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
-3
@@ -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 %}
|
||||
Reference in New Issue
Block a user