Merge pull request #999 from dod-ccpo/ccpo-user-list

Page for CCPO users list
This commit is contained in:
leigh-mil
2019-08-06 13:18:57 -04:00
committed by GitHub
8 changed files with 76 additions and 1 deletions

27
templates/ccpo/users.html Normal file
View File

@@ -0,0 +1,27 @@
{% 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 %}