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.

26 lines
659 B

  1. <table class="table table-hover table-condensed table-bordered">
  2. <thead>
  3. <tr>
  4. <th>User</th>
  5. <th>Pid</th>
  6. <th>%Cpu</th>
  7. <th>%Mem</th>
  8. <th>Vsz</th>
  9. <th>Rss</th>
  10. <th>Tty</th>
  11. <th>Stat</th>
  12. <th>Start</th>
  13. <th>Time</th>
  14. <th>Command</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. {% for data in getcpuusage.all %}
  19. {% for line in data %}
  20. {% cycle '<tr>' '' '' '' '' '' '' '' '' '' ''%}
  21. <td>{{line}}</td>
  22. {% cycle '' '' '' '' '' '' '' '' '' '' '</tr>' %}
  23. {% endfor %}
  24. {% endfor %}
  25. </tbody>
  26. </table>