39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<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" type='text/css' href="{{ url_for('static', filename='css/style.css')}} ">
|
||
<title>PROGULASU</title>
|
||
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1 class="h1header"> Пропущенные дежурства АСУ </h1>
|
||
</header>
|
||
<div class="container">
|
||
<h1>Количество и даты пропущенных дежурств УВП кафедры АСУ </h1>
|
||
</div>
|
||
<div class="container">
|
||
<table class="table ">
|
||
<thead>
|
||
<tr>
|
||
<th>ФИО</th>
|
||
<th>Кол-во дежурств</th>
|
||
<th>Даты</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>Сальный А.Г.</td>
|
||
<td>0</td>
|
||
<td>28.12.2002, 29.12.2009</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
</div>
|
||
</body>
|
||
</html> |