{% extends "base.html" %} {% block body %}

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

Kód:{{ place.code or '#' + place.place_id|string }} {% if school %}
RED_IZO:{{ school.red_izo or '–' }}
IČO:{{ school.ico or '–' }}
Ofic. název:{{ school.official_name or '–' }}
Adresa:{{ school.address or '–' }}
Druh školy:{{ "ZŠ" if school.is_zs else "" }} {{ "SŠ" if school.is_ss else "" }} {% else %}
NUTS/LAU:{{ place.nuts or '–' }} {% endif %}
Poznámka:{{ place.note or '–' }}
{% if can_edit %}
Editovat Přesunout
{% endif %} {% if place.parent %}

Nadřazené místo {% endif %}

Přístupová práva {% if place.can_have_child() %}

Podřízená místa

{% if children %} {% for child in children %}
Kód Název Typ
{{ child.get_code() }} {{ child.name or "#" + child.place_id|string }} {{ child.type_name() }} {% endfor %}
{% endif %} {% if can_edit %} Přidat nové podřízené místo {% endif %} {% endif %} {% endblock %}