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
454 B

12 years ago
  1. <table class="table table-hover table-condensed table-bordered">
  2. <thead>
  3. <tr>
  4. <th>Filesystem</th>
  5. <th>Size</th>
  6. <th>Used</th>
  7. <th>Avail</th>
  8. <th>Use %</th>
  9. <th>Mounted</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {% for data in getdisk %}
  14. {% cycle '<tr>' '' '' '' '' ''%}
  15. <td>{{data}}</td>
  16. {% cycle '' '' '' '' '' '</tr>' %}
  17. {% endfor %}
  18. </tbody>
  19. </table>