Files
notifications-admin/app/templates/views/organisations/organisation/settings/index.html
2018-03-06 17:28:04 +00:00

28 lines
831 B
HTML

{% extends "org_template.html" %}
{% from "components/table.html" import mapping_table, row, text_field, edit_field with context %}
{% block org_page_title %}
Organisation settings
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">Organisation settings</h1>
<div class="bottom-gutter-3-2 dashboard-table body-copy-table">
{% call mapping_table(
caption='General',
field_headings=['Label', 'Value', 'Action'],
field_headings_visible=False,
caption_visible=False
) %}
{% call row() %}
{{ text_field('Organisation name') }}
{{ text_field(current_org.name) }}
{{ edit_field(
'Change',
url_for('.edit_organisation_name', org_id=current_org.id)
)
}}
{% endcall %}
{% endcall %}
{% endblock %}