You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
325 B
19 lines
325 B
5 years ago
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
<title>Zdraví pacientů</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="content">
|
||
|
{% for t in teams %}
|
||
|
<div class="team">
|
||
|
<div class="bar" id="bar_{{t.id}}" style="height:{{t.points}}">
|
||
|
</div>
|
||
|
<div class="points">
|
||
|
{{t.points}}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</body>
|