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

<table class="table table-hover table-condensed table-bordered">
<thead>
<tr>
<th>User</th>
<th>TTY</th>
<th>Logged in from</th>
</tr>
</thead>
<tbody id="os-users">
{% for user in getusers %}
{% cycle '<tr>' '' ''%}
<td>{{user}}</td>
{% cycle '' '' '</tr>' %}
{% endfor %}
</tbody>
</table>