{% extends "base.html" %} {% block body_class %}page-bg bg-cabinets{% endblock %} {% block content %}

Здания и кабинеты

{% if session.get('role') not in ('admin','storekeeper') %}
Режим просмотра: изменения доступны только администратору.
{% endif %} {% if grouped %} {% for building, rows in grouped.items() %}
Здание: {{ building }}
{% for row in rows %} {% endfor %}
Кабинет Этаж Здание
{{ row.cabinet }} {{ row.floor or '—' }} {{ row.building or '—' }}
{% if session.get('role') in ('admin','storekeeper') and building != 'Без здания' %}
{% endif %} {% endfor %} {% else %}
Кабинеты не найдены.
{% endif %} {% if session.get('role') in ('admin','storekeeper') %} {% endif %} {% endblock %}