fix order of columns

This commit is contained in:
Thomas Steen Rasmussen 2018-08-19 18:35:40 +02:00
parent f408b0955a
commit a6e12868b3

View file

@ -14,8 +14,8 @@ Your Secret Tokens | {{ block.super }}
<thead>
<tr>
<th>Camp</th>
<th>Token</th>
<th>Category</th>
<th>Token</th>
<th>Description</th>
<th>Found</th>
</tr>
@ -33,10 +33,10 @@ Your Secret Tokens | {{ block.super }}
{% for unfound in unfound_list %}
<tr>
<td>{{ unfound.camp.title }}</td>
<td>-</td>
<td>{{ unfound.category }}</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
{% endfor %}
</tbody>