27 lines
621 B
HTML
27 lines
621 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Übersicht</h1>
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<th>id</th>
|
|
<th>computer</th>
|
|
<th>status</th>
|
|
<th>vegetable</th>
|
|
<th>spirit_animal</th>
|
|
<th>operating_system</th>
|
|
<th>check</th>
|
|
</tr>
|
|
{% for row in file_data %}
|
|
<tr>
|
|
<th>{{ row[0] }}</th>
|
|
<th>{{ row[1] }}</th>
|
|
<th>{{ row[2] }}</th>
|
|
<th>{{ row[3] }}</th>
|
|
<th>{{ row[4] }}</th>
|
|
<th>{{ row[5] }}</th>
|
|
<th>{{ row[6] }}</th>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|