59 lines
1.6 KiB
HTML
59 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/bootstrap.min.css')}}">
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/index.css')}}">
|
|
<title>Инвентаризация</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
|
|
<h1>
|
|
Инвентаризация каф АСУ
|
|
</h1>
|
|
|
|
<h2>
|
|
Аудитория
|
|
</h2>
|
|
|
|
|
|
</header>
|
|
|
|
<div class="row">
|
|
<div class="card col-md-10 col-10">
|
|
<div class="card-body">
|
|
<h3 class="card-title"> Поаудиторно </h3>
|
|
<form method="POST" action="/addoborudtodb">
|
|
<table class="table" id="datatable" col-md-10>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Инв. номер</th>
|
|
<th scope="col">Название</th>
|
|
<th scope="col">Аудитория</th>
|
|
</tr>
|
|
|
|
{% 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>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |