{% extends "admin/base.html" %} {% block title %}{{ 'Edit section' if section else 'New section' }}{% endblock %} {% macro val(field, default='') -%} {%- if form is not none -%}{{ form.get(field, default) }} {%- elif section is not none -%}{{ section[field] if section[field] is not none else default }} {%- else -%}{{ default }}{%- endif -%} {%- endmacro %} {% block content %}

{{ 'Edit section' if section else 'New section' }}

{{ section.title if section else 'Sections group topics on the public page.' }}

← Back
Cancel
{% endblock %}