aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/templates/admin/manage_users.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/app/templates/admin/manage_users.html b/app/templates/admin/manage_users.html
index 1d385c1..5c44a48 100644
--- a/app/templates/admin/manage_users.html
+++ b/app/templates/admin/manage_users.html
@@ -42,20 +42,20 @@
<thead class="thead-dark">
<th scope="col">ID</th>
<th scope="col">Username</th>
- <th scope="col">Email</th>
- <th scope="col">Confirmed</th>
+ <th scope="col">Email</th>
+ <th scope="col">Confirmed</th>
<th scope="col">Last Active</th>
- <th scope="col">Admin</th>
+ <th scope="col">Admin</th>
</thead>
{% for user in users %}
<tr>
- <th scope="row">{{ user.id }}</th>
- <td>{{ user.username }}</td>
- <td>{{ user.email }}</td>
- <td>{% if user.is_confirmed %}Yes{% else %}No{% endif %}</td>
- <td>{{ user.last_active }}</td>
- <td>{% if user.is_admin %}Yes{% else %}{% endif %}</td>
- </tr>
+ <th scope="row">{{ user.id }}</th>
+ <td>{{ user.username }}</td>
+ <td>{{ user.email }}</td>
+ <td>{% if user.is_confirmed %}Yes{% else %}No{% endif %}</td>
+ <td>{{ user.last_active }}</td>
+ <td>{% if user.is_admin %}Yes{% else %}{% endif %}</td>
+ </tr>
{% endfor %}
</tr>
</table>