19 lines
600 B
HTML
19 lines
600 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin Users | left4me{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Users</h1>
|
|
<table class="table">
|
|
<thead><tr><th>Username</th><th>Admin</th><th>Created</th><th>Updated</th></tr></thead>
|
|
<tbody>
|
|
{% for user in users %}
|
|
<tr><td>{{ user.username }}</td><td>{{ "yes" if user.admin else "no" }}</td><td>{{ user.created_at }}</td><td>{{ user.updated_at }}</td></tr>
|
|
{% else %}
|
|
<tr><td colspan="4" class="muted">No users found.</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{% endblock %}
|