Move docker disk usage to bottom of page
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user