Initial commit
This commit is contained in:
23
source/templates/equipment_additions.html
Normal file
23
source/templates/equipment_additions.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user