View edit organisation notes page

Also fix page title for edit service notes page.
This commit is contained in:
Pea Tyczynska
2021-02-04 18:00:41 +00:00
parent 56b777872e
commit e090d97997
5 changed files with 47 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% from "components/textbox.html" import textbox %}
{% extends "org_template.html" %}
{% block org_page_title %}
Edit organisation notes
{% endblock %}
{% block maincolumn_content %}
{{ page_header(
'Edit organisation notes',
back_link=url_for('.organisation_settings', org_id=current_org.id)
) }}
{% call form_wrapper() %}
{{ textbox(
form.notes,
rows=4,
width='1-1',
autofocus=True,
autosize=True,
) }}
{{ page_footer('Save') }}
{% endcall %}
{% endblock %}

View File

@@ -5,7 +5,7 @@
{% from "components/textbox.html" import textbox %}
{% block service_page_title %}
Data retention
Edit service notes
{% endblock %}
{% block maincolumn_content %}