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

36 lines
948 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block body_class %}page-bg bg-history{% endblock %}
{% block content %}
<h3>Движение техники</h3>
<form method="get" class="row g-2 mb-3">
<div class="col-md-4">
<input name="inventory_number" class="form-control" placeholder="Инвентарный номер" value="{{ inventory_number or '' }}">
</div>
<div class="col-md-2 d-grid">
<button class="btn btn-primary">Поиск</button>
</div>
</form>
<table class="table table-bordered table-sm">
<tr>
<th>Дата</th>
<th>Инв. номер</th>
<th>Тип</th>
<th>Из</th>
<th>В</th>
<th>Примечание</th>
</tr>
{% for dt, inv, etype, from_cab, to_cab, note in rows %}
<tr>
<td>{{ dt }}</td>
<td>{{ inv }}</td>
<td>{{ etype }}</td>
<td>{{ from_cab or '' }}</td>
<td>{{ to_cab or '' }}</td>
<td>{{ note or '' }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}