Move docker disk usage to bottom of page

This commit is contained in:
Peter Stockings
2025-12-24 10:01:38 +11:00
parent ab75c61ec7
commit 6f31053b51

View File

@@ -191,32 +191,6 @@
</div>
</div>
<h3>DOCKER DISK USAGE</h3>
<div style="overflow-x: auto; margin-bottom: 24px;">
<table>
<thead>
<tr>
<th>TYPE</th>
<th>TOTAL</th>
<th>ACTIVE</th>
<th>SIZE</th>
<th>RECLAIMABLE</th>
</tr>
</thead>
<tbody>
{% for typ, r in data.system.system_df.items() %}
<tr>
<td><span style="color: #00d9ff; font-weight: 700;">[{{ typ }}]</span></td>
<td>{{ r.total }}</td>
<td>{{ r.active }}</td>
<td>{{ r.size }}</td>
<td>{{ r.reclaimable }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div style="
font-size: 11px;
color: #8b949e;
@@ -367,3 +341,29 @@
</table>
</div>
{% endif %}
<h3>DOCKER DISK USAGE</h3>
<div style="overflow-x: auto; margin-bottom: 24px;">
<table>
<thead>
<tr>
<th>TYPE</th>
<th>TOTAL</th>
<th>ACTIVE</th>
<th>SIZE</th>
<th>RECLAIMABLE</th>
</tr>
</thead>
<tbody>
{% for typ, r in data.system.system_df.items() %}
<tr>
<td><span style="color: #00d9ff; font-weight: 700;">[{{ typ }}]</span></td>
<td>{{ r.total }}</td>
<td>{{ r.active }}</td>
<td>{{ r.size }}</td>
<td>{{ r.reclaimable }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>