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

Проекторы

{% if session.get('role') != 'admin' %}
Режим просмотра: изменения доступны только администратору.
{% endif %} {% if session.get('role') == 'admin' %}
Добавить устройство
{% endif %} {% for id, inv, kit_type, brand, proj_model, proj_serial, board_model, proj_inv, board_inv, comp_inv_num, comp_id, comp_inv, comp_brand, comp_model, comp_type, cab_id, cab_name, date_in_operation, note, date_added in rows %} {% set comp_text = [comp_brand, comp_model]|select|join(' ') %} {% endfor %}
Инв. № Тип Бренд Модель проектора Серийный № Модель доски Ноутбук / ПК Кабинет Дата ввода Примечание Добавлено
{{ inv }} {{ kit_type_labels.get(kit_type, kit_type) }} {{ brand or '' }} {{ proj_model or '' }} {{ proj_serial or '' }} {{ board_model or '' }} {% if comp_text %} {{ comp_text }}{% if comp_inv %} ({{ comp_inv }}){% endif %} {% else %} {{ comp_inv or '' }} {% endif %} {{ cab_name or '' }} {{ date_in_operation or '' }} {{ note or '' }} {{ date_added }}
{% if session.get('role') == 'admin' %} {% endif %} {% endblock %}