v0.1.1 update
This commit is contained in:
25
templates/partials/active_table.html
Normal file
25
templates/partials/active_table.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user