Files
ProgulAsuFlask/templates/index.html
2022-11-05 12:22:07 +03:00

48 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>