Files
atst/templates/ccpo/users.html
2019-08-05 16:11:24 -04:00

28 lines
482 B
HTML

{% extends "base.html" %}
{% block content %}
<div class='col'>
<div class="h2">
CCPO Users
</div>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>DoD ID</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.full_name }}</td>
<td>{{ user.email }}</td>
<td>{{ user.dod_id }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}