26 lines
568 B
HTML
26 lines
568 B
HTML
<table class="fleet-table">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Status</th>
|
|
<th>Age</th>
|
|
<th>Last Seen</th>
|
|
<th>File</th>
|
|
<th>Note</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for uid, u in units.items() %}
|
|
<tr>
|
|
<td>{{ uid }}</td>
|
|
<td>{{ u.status }}</td>
|
|
<td>{{ u.age }}</td>
|
|
<td>{{ u.last }}</td>
|
|
<td>{{ u.fname }}</td>
|
|
<td>{{ u.note }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|