forked from arti/doors
1
0
Fork 0
doors/kdoorweb/kdoorweb/views/list.html

23 lines
380 B
HTML

% rebase('base.html')
<h3>Users List</h3>
<table class="even">
<thead>
<tr>
<th>Name</th>
<th style="width:4em;">Cards</th>
<th style="width:10em;">Last access</th>
</tr>
</thead>
<tbody>
% for user in users:
<tr>
<td><a href="/info/{{user['id']}}">{{user["full_name"]}}</a></td>
<td>-</td>
<td>-</td>
</tr>
% end
</tbody>
</table>