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