diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-28 09:49:44 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-28 09:49:44 +0200 |
commit | b18f8ae2fe3b53dd44780b64f2df7b504cb788d7 (patch) | |
tree | 4fac55affd54d38073ffb8917d86da60b1253b97 /pyaggr3g470r/templates | |
parent | No trailing slash for this view. (diff) | |
download | newspipe-b18f8ae2fe3b53dd44780b64f2df7b504cb788d7.tar.gz newspipe-b18f8ae2fe3b53dd44780b64f2df7b504cb788d7.tar.bz2 newspipe-b18f8ae2fe3b53dd44780b64f2df7b504cb788d7.zip |
Table rows of the dashboard are colored for inactive accounts.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/admin/dashboard.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html index 6253ca62..bc858f89 100644 --- a/pyaggr3g470r/templates/admin/dashboard.html +++ b/pyaggr3g470r/templates/admin/dashboard.html @@ -17,7 +17,7 @@ </thead> <tbody> {% for user in users|sort(attribute="nickname") %} - <tr> + <tr {% if user.activation_key != "" %}class="warning"{% endif %} > <td>{{ loop.index }}</td> {% if user.id == current_user.id %} <td><a href="/management">{{ user.nickname }}</a> (It's you!)</td> |