blob: 0d1f96c027a5dc5142ed2c2f639004ab29482816 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% from "macros.j2" import header, navbar, footer, player %}
<!doctype html>
<html lang="en">
{{ header(url_for) }}
<body>
<section class="section">
{{ navbar(url_for) }}
<div class="fixed-grid has-4-cols">
<div class="grid">
{% for id, value in players.items() %}
<div class="cell"> {{ player(id, value.status, value.name) }} </div>
{% endfor %}
</div>
{{ footer() }}
</section>
</body>
</html>
|