-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.html
More file actions
34 lines (32 loc) · 1 KB
/
users.html
File metadata and controls
34 lines (32 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "layout.html" %}
{% block title %}
Users
{% endblock %}
{% block main %}
<form action="{{ url_for('users') }}" method="post">
<fieldset>
<table style="width:100%"
<th>
<th>ID</th>
<th>Username</th>
<th>Active Status</th>
<th>First Name</th>
<th>Last Name</th>
<th>Phone Number</th>
<th>Admin</th>
</th>
{% for k in rows %}
<tr>
<td>{{k["id"]}}</td>
<td>{{k["username"]}}</td>
<td>{{k["active_status"]}}</td>
<td>{{k["first_name"]}}</td>
<td>{{k["last_name"]}}</td>
<td>{{k["phone_num"]}}</td>
<td>{{k["is_admin"]}}</td>
</tr>
{% endfor %}
</table>
</fieldset>
</form>
{% endblock %}