cards.html (612B)
1 {% from 'card_icon.html' import card_icon %} 2 {% from 'banned_icon.html' import banned_icon %} 3 {% include 'header.html' %} 4 <table class="cards-table"> 5 <thead> 6 <tr> 7 <th>Card</th> 8 <th>Play Count</th> 9 </tr> 10 </thead> 11 <tbody> 12 {% for card in cards %} 13 <tr> 14 <td><span class="card-name-group">{{ card_icon(card.card) }}<a href="/card?name={{ card.card|url_encode }}">{{ card.card }}</a>{% if card.card in banned_cards %}{{ banned_icon() }}{% endif %}</span></td> 15 <td>{{ card.play_count }}</td> 16 </tr> 17 {% endfor %} 18 </tbody> 19 </table> 20 {% include 'footer.html' %}