From 8110f6d0615476f90e129dedb15b41e814252e48 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 20 Feb 2020 14:16:23 +0000 Subject: Add update/credit flags to user table --- app/__init__.py | 2 +- app/templates/admin/manage_users.html | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index 48465b1..32fd0c7 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = "0.4.4" +__version__ = "0.4.5" import logging import os 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 @@ Confirmed? Introduced? Last Active (UTC) + Requested Update? + Requested Credit? Admin? {% for user in users %} @@ -47,6 +49,8 @@ {% if user.is_confirmed %}Yes{% else %}No{% endif %} {% if user.is_introduced %}Yes{% else %}No{% endif %} {{ user.last_active }} + {% if user.wants_updates %}Yes{% else %}{% endif %} + {% if user.wants_credit %}Yes{% else %}{% endif %} {% if user.is_admin %}Yes{% else %}{% endif %} {% endfor %} -- cgit v1.2.3