{% extends "base_template.html" %} {% from "courses/admin/_form.html" import field, flashes, visibility with context %} {% block title %}{{ category.name if category else _('New section') }}{% endblock %} {% block content %}

{{ category.name if category else _('New section') }}

{{ course.name }}

{{ _('Back to the course') }}
{{ flashes() }}
{{ form.hidden_tag() }} {{ field(form.name) }} {{ field(form.position, type="number", min="0") }}
{{ _('Sections are ordered by hand, lowest first.') }}
{{ visibility(form) }}

{{ _('Withholding a section withholds every page in it, whatever those pages say on their own.') }}

{% endblock %}