40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="card col-md-10 col-10">
|
|
<div class="card-body">
|
|
|
|
<form>
|
|
<h3 class=" no-print card-title"> Все мат. ценности </h3>
|
|
<button id="printallbutton"> Печать </button>
|
|
<table class="table pagebreak" col-md-10>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Инв. номер</th>
|
|
<th scope="col">Название</th>
|
|
<th scope="col">Аудитория</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
{% for item in res: %}
|
|
<tr>
|
|
<td> <input type="hidden" name="invnomer" value="{{ item[0] }}"> {{ item[0] }} </td>
|
|
<td> {{ item[1] }} </td>
|
|
|
|
|
|
<td>
|
|
{{ item[2] }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |