Add check column to admin form view

This commit is contained in:
Sauer 2019-04-13 22:02:49 +02:00
parent 309bdf4983
commit fb0ac080e5

View File

@ -9,6 +9,7 @@
<th>vegetable</th>
<th>spirit_animal</th>
<th>operating_system</th>
<th>check</th>
</tr>
{% for row in file_data %}
<tr>
@ -18,6 +19,7 @@
<th>{{ row[3] }}</th>
<th>{{ row[4] }}</th>
<th>{{ row[5] }}</th>
<th>{{ row[6] }}</th>
</tr>
{% endfor %}
</table>