Update templates/dhcpv6_leases.html

This commit is contained in:
Blackwhitebear8 2025-10-31 20:05:10 +01:00
parent 24cf3bd00e
commit c97b483325

View file

@ -29,29 +29,30 @@
</button> </button>
</div> </div>
<table class="striped table table-bordered" id="leaseTable"> <div class="table-responsive">
<thead> <table class="striped table table-bordered" id="leaseTable">
<tr> <thead>
<th class="sortable" onclick="sortTable('leaseTable', 0, this)">IPv6 Address <span class="sort-arrow"></span></th> <tr>
<th class="sortable" onclick="sortTable('leaseTable', 1, this)">State <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 0, this)">IPv6 Address <span class="sort-arrow"></span></th>
<th class="sortable" onclick="sortTable('leaseTable', 2, this)">Last Communication <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 1, this)">State <span class="sort-arrow"></span></th>
<th class="sortable" onclick="sortTable('leaseTable', 3, this)">Lease Expiration <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 2, this)">Last Communication <span class="sort-arrow"></span></th>
<th class="sortable" onclick="sortTable('leaseTable', 4, this)">Remaining <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 3, this)">Lease Expiration <span class="sort-arrow"></span></th>
<th class="sortable" onclick="sortTable('leaseTable', 5, this)">Type <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 4, this)">Remaining <span class="sort-arrow"></span></th>
<th class="sortable" onclick="sortTable('leaseTable', 6, this)">Pool <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 5, this)">Type <span class="sort-arrow"></span></th>
<th class="sortable" onclick="sortTable('leaseTable', 7, this)">DUID <span class="sort-arrow"></span></th> <th class="sortable" onclick="sortTable('leaseTable', 6, this)">Pool <span class="sort-arrow"></span></th>
</tr> <th class="sortable" onclick="sortTable('leaseTable', 7, this)">DUID <span class="sort-arrow"></span></th>
</thead> </tr>
<tbody id="leaseTableBody"> </thead>
<tr id="lease-loading-row"> <tbody id="leaseTableBody">
<td colspan="8" class="text-center"> <tr id="lease-loading-row">
<div class="spinner-border text-primary" role="status"> <td colspan="8" class="text-center">
<span class="visually-hidden">Loading...</span> <div class="spinner-border text-primary" role="status">
</div> <span class="visually-hidden">Loading...</span>
</td> </div>
</tr> </td>
</tbody> </tr>
</table> </tbody>
{% endif %} </table>
</div> {% endif %}
</section> </section>
{% endblock %} {% endblock %}