doors/kdoorweb/kdoorweb/views/list.html

27 lines
534 B
HTML
Raw Normal View History

2020-09-12 16:44:33 +00:00
% rebase('base.html')
<h3>Users List</h3>
<table class="even">
<thead>
<tr>
<th>Name</th>
2020-09-13 16:36:05 +00:00
<th style="width:4em;">Cards</th>
<th style="width:10em;">Last access</th>
2020-09-12 16:44:33 +00:00
</tr>
</thead>
<tbody>
2020-09-13 16:36:05 +00:00
% for user in users:
2020-09-12 16:44:33 +00:00
<tr>
2020-09-22 20:35:30 +00:00
% if user["disabled"]:
<td><s><a href="/info/{{user['id']}}">{{user["full_name"]}}</a></s></td>
% else:
<td><a href="/info/{{user['id']}}">{{user["full_name"]}}</a></td>
% end
<td>{{user["cards"]}}</td>
2020-09-12 16:44:33 +00:00
<td>-</td>
</tr>
2020-09-13 16:36:05 +00:00
% end
2020-09-12 16:44:33 +00:00
</tbody>
</table>