reworking of file structure
[mlpccg-meta.git] / meta / templates / tournament_detail.html
1 {% extends "base.html" %}
2 {% load humanize %}
3
4 {% block content %}
5
6 <div class="row">
7 <div class="col-xs-12">
8 <h2>{{ tournament.name }}</h2>
9 <p>{{ tournament.date }}</h2>
10 <table class="table">
11 <tr>
12 <th>Placement</th>
13 <th colspan="3">Deck</th>
14 </tr>
15 {% for placement, decklist, verified in records %}
16 <tr class="{% if not verified %}warning{% endif %}">
17 <td>{{ placement|ordinal }}</td>
18 <td><a href="{{ decklist.ponyhead_link }}">{{ decklist.name }}</a></td>
19 <td>{{ decklist.description }}</td>
20 <td>{% if not verified %}user-submitted{% endif %}</td>
21 </tr>
22 {% endfor %}
23 </table>
24 </div>
25 </div>
26
27 {% endblock %}