You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
455 B
19 lines
455 B
<table class="table table-hover table-condensed table-bordered" >
|
|
<thead>
|
|
<tr>
|
|
<th>Filesystem</th>
|
|
<th>Size</th>
|
|
<th>Used</th>
|
|
<th>Avail</th>
|
|
<th>Use %</th>
|
|
<th>Mounted</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for data in getdisk %}
|
|
{% cycle '<tr>' '' '' '' '' ''%}
|
|
<td>{{data}}</td>
|
|
{% cycle '' '' '' '' '' '</tr>' %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|