changes order the input checkbox in the devices table

This commit is contained in:
Cayo Puigdefabregas 2021-12-29 10:13:03 +01:00
parent 1da6484f26
commit e0de5c018c
2 changed files with 2 additions and 2 deletions

View File

@ -47,17 +47,18 @@
<table class="table">
<thead>
<tr>
<th scope="col">Select all</th>
<th scope="col">Title</th>
<th scope="col">DHID</th>
<th scope="col">Tags</th>
<th scope="col">Status</th>
<th scope="col">Update</th>
<th scope="col">Select all</th>
</tr>
</thead>
<tbody>
{% for dev in devices %}
<tr>
<td><input type="checkbox" /></td>
<td>{{ dev.type }} {{ dev.manufacturer }} {{ dev.model }}</td>
<td>{{ dev.devicehub_id }}</td>
<td>
@ -67,7 +68,6 @@
</td>
<td>{% if dev.status %}{{ dev.status }}{% endif %}</td>
<td>{{ dev.updated.strftime('%H:%M %d-%m-%Y') }}</td>
<td><input type="checkbox" /></td>
</tr>
{% endfor %}
</tbody>