aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-02-20 14:16:23 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-02-20 14:17:59 +0000
commit8110f6d0615476f90e129dedb15b41e814252e48 (patch)
tree15d8d8165a3261bde2f14946ab7ab4b358f4ac52 /app/templates/admin
parentUpdate schema to always include time index (diff)
downloadAnnotateChange-8110f6d0615476f90e129dedb15b41e814252e48.tar.gz
AnnotateChange-8110f6d0615476f90e129dedb15b41e814252e48.zip
Add update/credit flags to user table
Diffstat (limited to 'app/templates/admin')
-rw-r--r--app/templates/admin/manage_users.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/templates/admin/manage_users.html b/app/templates/admin/manage_users.html
index 193b177..0f47630 100644
--- a/app/templates/admin/manage_users.html
+++ b/app/templates/admin/manage_users.html
@@ -37,6 +37,8 @@
<th scope="col">Confirmed?</th>
<th scope="col">Introduced?</th>
<th scope="col">Last Active (UTC)</th>
+ <th scope="col">Requested Update?</th>
+ <th scope="col">Requested Credit?</th>
<th scope="col">Admin?</th>
</thead>
{% for user in users %}
@@ -47,6 +49,8 @@
<td>{% if user.is_confirmed %}Yes{% else %}No{% endif %}</td>
<td>{% if user.is_introduced %}Yes{% else %}No{% endif %}</td>
<td>{{ user.last_active }}</td>
+ <td>{% if user.wants_updates %}Yes{% else %}{% endif %}</td>
+ <td>{% if user.wants_credit %}Yes{% else %}{% endif %}</td>
<td>{% if user.is_admin %}Yes{% else %}{% endif %}</td>
</tr>
{% endfor %}