
Get event management page almost working! Deleting events works, creating new events works, editing events (almost) works! Just need to figure out how to properly set the date and time fields when editing... Also, user management! You can see a list of users and will theoretically be able to promote officers from the web UI
28 lines
699 B
HTML
28 lines
699 B
HTML
{% extends "admin/admin-layout.html" %}
|
|
|
|
{% block app_content %}
|
|
<h1>Member List</h1>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Email</th>
|
|
<th>Name</th>
|
|
<th>Created</th>
|
|
<th>Last Login</th>
|
|
<th>Officer?</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for u in u_list %}
|
|
<tr>
|
|
<td>{{ u.email }}</td>
|
|
<td>{{ u.first_name }} {{ u.last_name }}</td>
|
|
<td>{{ u.created }}</td>
|
|
<td>{{ u.last_login }}</td>
|
|
<td>{{ u.is_admin }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
|
|
</table>
|
|
{% endblock app_content %}
|