1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| {% include 'header.html' %}
<p><a href="/players">View all players</a> | <a href="/banned">View banned cards</a> | <a href="/cards">View all cards</a></p>
<form action="/card" method="get" class="card-search">
<input type="text" name="name" placeholder="Search for a card..." required>
<input type="submit" value="Search">
</form>
<div class="rounds-list">
{% for round in rounds %}
<div class="round-item">
<a href="/round/{{ round.id }}">Round {{ "%03d"|format(round.id) }}</a>
<span class="round-meta">
{% if round.date %}
{{ round.date }}
{% endif %}
[{{ round.player_count }} players]
</span>
</div>
{% endfor %}
</div>
{% include 'footer.html' %}
|