{% extends "base.html" %} {% block title %}{{ place.type_name().title() }}: {{ place.name }}{% endblock %} {% block breadcrumbs %} {{ place_breadcrumbs(place) }} {% endblock %} {% block body %}
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 %} Přístupová práva {% if g.user.is_admin %} Historie {% endif %}
{% 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_add_child %} Přidat nové podřízené místo {% endif %} {% endif %} {% endblock %}