fix order of columns
This commit is contained in:
parent
f408b0955a
commit
a6e12868b3
|
@ -14,8 +14,8 @@ Your Secret Tokens | {{ block.super }}
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Camp</th>
|
<th>Camp</th>
|
||||||
<th>Token</th>
|
|
||||||
<th>Category</th>
|
<th>Category</th>
|
||||||
|
<th>Token</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th>Found</th>
|
<th>Found</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -33,10 +33,10 @@ Your Secret Tokens | {{ block.super }}
|
||||||
{% for unfound in unfound_list %}
|
{% for unfound in unfound_list %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ unfound.camp.title }}</td>
|
<td>{{ unfound.camp.title }}</td>
|
||||||
<td>-</td>
|
|
||||||
<td>{{ unfound.category }}</td>
|
<td>{{ unfound.category }}</td>
|
||||||
<td>-</td>
|
<td>-</td>
|
||||||
<td>-</td>
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in a new issue