{% extends "base.html" %} {% block title %}{{ title }} · 本地导航{% endblock %} {% block body %}

{{ title }}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for cat, msg in messages %}
{{ msg }}
{% endfor %}
{% endif %} {% endwith %}
{{ form.hidden_tag() }}
{{ form.name.label }} {{ form.name() }} {% if form.name.errors %}
{{ form.name.errors[0] }}
{% endif %}
{{ form.sort_order.label }} {{ form.sort_order() }} {% if form.sort_order.errors %}
{{ form.sort_order.errors[0] }}
{% endif %}
{{ form.submit(class="btn btn-primary", style="width: auto") }} 取消
{% endblock %}