{% 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.host.label }} {{ form.host(placeholder="例如 192.168.1.10 或 主机名") }} {% if form.host.errors %}
{{ form.host.errors[0] }}
{% endif %}
{{ form.port.label }} {{ form.port() }} {% if form.port.errors %}
{{ form.port.errors[0] }}
{% endif %}
{{ form.path.label }} {{ form.path(placeholder="/ 或 /path") }} {% if form.path.errors %}
{{ form.path.errors[0] }}
{% endif %}
{{ form.group_id.label }} {{ form.group_id() }} {% if form.group_id.errors %}
{{ form.group_id.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 %}