Trying something
parent
1c228fa781
commit
b2ffd74286
@ -0,0 +1,20 @@
|
|||||||
|
{% extends 'layout/settings.html' %}
|
||||||
|
{% from '_includes.html' import render_pagination with context %}
|
||||||
|
{% from "_formhelpers.html" import errors %}
|
||||||
|
|
||||||
|
{% block setting_content %}
|
||||||
|
<table>
|
||||||
|
<!-- <thead></thead> -->
|
||||||
|
<tbody>
|
||||||
|
{% for user in users %}
|
||||||
|
<tr>
|
||||||
|
<td>{{ user.username }}</td>
|
||||||
|
<td>{{ user.user_status.name }}</td>
|
||||||
|
<td>{{ user.op_level.name }}</td>
|
||||||
|
<td>{{ user.last_login.strftime('%I:%M %p %d %b, %y') }}</td>
|
||||||
|
</tr>
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
{{ render_pagination('user.manage_users') }}
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue