48 lines
1.1 KiB
HTML
48 lines
1.1 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">
|
||
<div class="row">
|
||
|
||
{% for key, value in users.items() %}
|
||
|
||
<div class="card col-md-3">
|
||
<div class="card-body">
|
||
<h2 class="card-title">
|
||
{{key}}
|
||
</h2>
|
||
<div class="t1">
|
||
Количество прогулов: {{value['kolvo']}}
|
||
</div>
|
||
<div class="t1">
|
||
Даты прогулов:
|
||
{% for i in value['dates'] %}
|
||
{{i}},
|
||
{% endfor %}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
|
||
</card>
|
||
|
||
{% endfor %}
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html> |