{% 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 %}

Organisation settings

{% 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 %}