aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-22 14:52:37 -0400
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-22 14:52:37 -0400
commit771945c9e5f3e0c0fa61ced5f54ef8b6292b76ae (patch)
tree245a5e09e4b9d556e8fcc892fae1c3ae5cef73b0
parentMove dealing with datasets to util (diff)
downloadAnnotateChange-771945c9e5f3e0c0fa61ced5f54ef8b6292b76ae.tar.gz
AnnotateChange-771945c9e5f3e0c0fa61ced5f54ef8b6292b76ae.zip
Code formatting
-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>