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.

16 lines
392 B

12 years ago
12 years ago
12 years ago
  1. <table class="table table-hover table-condensed table-bordered">
  2. <thead>
  3. <tr>
  4. <th>User</th>
  5. <th>TTY</th>
  6. <th>Logged in from</th>
  7. </tr>
  8. </thead>
  9. <tbody id="os-users">
  10. {% for user in getusers %}
  11. {% cycle '<tr>' '' ''%}
  12. <td>{{user}}</td>
  13. {% cycle '' '' '</tr>' %}
  14. {% endfor %}
  15. </tbody>
  16. </table>