{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block body %}

{{ place.type_name().title() }}: {{ place.name }}

Zpět na detail místa

Přesun místa

Současné nadřazené místo: {% for parent in parents %} {% if loop.index != 1 %}→{% endif %}{{ parent.name }} {% endfor %}

Krok 1: Vyhledání místa

Vyhledejte místo podle jeho kódu. Můžete zadat i ID ve formátu #123.

{{ wtf.quick_form(form, form_type='inline') }} {% if new_parents %}

Vyhledané nadřazené místo: {% for parent in new_parents %} {% if loop.index != 1 %}→{% endif %} {{ parent.name }} {% endfor %}

{% endif %} {% if search_error %} {% endif %} {% if form_confirm %}

Krok 2: Potvrdit přesun

{{ wtf.quick_form(form_confirm, form_type='inline') }} {% endif %} {% endblock %}