Files
asuinventory/templates/all.html
T
2024-04-03 22:50:16 +03:00

36 lines
1.1 KiB
HTML

{% extends 'base.html' %}
{% block content %}
<div class="row col-12">
<div class=" card col-11">
<h3 class=" no-print"> Все мат. ценности </h3>
</div>
<div class="row col-12">
<button class="button" id="printallbutton"> Печать </button>
</div>
</div>
<div class="row">
<div class="card col-md-11" >
<table id="datable" class="alldatable table pagebreak" >
<thead>
<tr>
<th scope="col">№ п/п</th>
<th scope="col">№ п/п вед</th>
<th scope="col">Инв. номер</th>
<th scope="col">Название</th>
<th scope="col">Кол-во</th>
<th scope="col">Счёт</th>
<th scope="col">Аудитория</th>
</tr>
</thead>
</table>
</div>
</div>
<script src="{{url_for('static', filename='js/allmatc.js') }}"></script>
{% endblock %}