orgodostihy/templates/tablo.html

23 lines
381 B
HTML
Raw Normal View History

2019-10-11 18:16:25 +02:00
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<title>Zdraví pacientů</title>
</head>
<body>
<div id="content">
{% for t in teams %}
2019-10-11 19:18:34 +02:00
<div class="team_bar">
2019-10-11 18:16:25 +02:00
<div class="bar" id="bar_{{t.id}}" style="height:{{t.points}}">
</div>
<div class="points">
{{t.points}}
</div>
2019-10-11 19:18:34 +02:00
<div class="emergs">
Záchranky:
{{t.emerg}}
</div>
2019-10-11 18:16:25 +02:00
</div>
{% endfor %}
</div>
</body>