mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 19:38:26 -04:00
28 lines
831 B
HTML
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 %}
|