Files
Inv_web/templates/equipment_additions.html
2026-02-23 20:59:05 +03:00

24 lines
617 B
HTML

{% extends "base.html" %}
{% block body_class %}page-bg bg-history{% endblock %}
{% block content %}
<h3>История добавления техники</h3>
<table class="table table-bordered table-sm">
<tr>
<th>Дата</th>
<th>Категория</th>
<th>Тип</th>
<th>Инв. номер</th>
<th>Кабинет</th>
</tr>
{% for item in items %}
<tr>
<td>{{ item.date_added }}</td>
<td>{{ item.category }}</td>
<td>{{ item.item_type }}</td>
<td>{{ item.inventory_number }}</td>
<td>{{ item.cabinet or '' }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}