Move docker disk usage to bottom of page
This commit is contained in:
@@ -191,32 +191,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</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="
|
<div style="
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #8b949e;
|
color: #8b949e;
|
||||||
@@ -366,4 +340,30 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% 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