From ba2424163a9af1c0e7b8534c62f4c18b51e7f99a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 7 Apr 2016 00:28:59 +0200 Subject: Bug fix in the dashboard template. --- src/web/templates/admin/dashboard.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html index d6e53526..925d4cac 100644 --- a/src/web/templates/admin/dashboard.html +++ b/src/web/templates/admin/dashboard.html @@ -18,7 +18,7 @@ {% for user in users %} - + {{ loop.index }} {{ user.nickname }}{% if user.id == current_user.id %} (It's you!){% endif %} {{ user.email }} @@ -28,7 +28,7 @@ {% if user.id != current_user.id %} - {% if user.enabled %} + {% if user.is_active %} {% else %} -- cgit