start proj

This commit is contained in:
2022-10-31 19:10:35 +03:00
parent 0de5e255b8
commit 138e85cfa0
7 changed files with 205 additions and 0 deletions

39
templates/index.html Normal file
View File

@@ -0,0 +1,39 @@
<!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></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>