{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block title %}{{ place.type_name().title() }}: {{ place.name }} – přesun místa{% endblock %} {% block breadcrumbs %} {{ place_breadcrumbs(place, action="Přesun místa") }} {% endblock %} {% block body %}

Krok 1: Vyhledání místa

Vyhledejte místo podle jeho kódu.

{{ 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 %}