diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-15 22:16:52 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-15 22:16:52 +0200 |
commit | 8af13a28e46e1cbdd1599e4b4d539f434c5ab3bc (patch) | |
tree | 798e4d5badca3709f2411659436f94d5b1bda143 /pyaggr3g470r/templates | |
parent | No need to display the user's activation key. (diff) | |
download | newspipe-8af13a28e46e1cbdd1599e4b4d539f434c5ab3bc.tar.gz newspipe-8af13a28e46e1cbdd1599e4b4d539f434c5ab3bc.tar.bz2 newspipe-8af13a28e46e1cbdd1599e4b4d539f434c5ab3bc.zip |
List all users in the table.
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 d40ffdf5..147edf49 100644 --- a/pyaggr3g470r/templates/admin/dashboard.html +++ b/pyaggr3g470r/templates/admin/dashboard.html @@ -18,7 +18,7 @@ {% for user in users|sort(attribute="nickname") %} <tr> <td>{{ loop.index }}</td> - <td><a href="/admin/user/{{ user.id }}/">{{ user.nickname }}</a></td> + <td><a href="/admin/user/{{ user.id }}/">{{ user.nickname }}{{ if user.id == current_user.id }} (It's you!){{ endif }}</a></td> <td><a href="mailto:{{ user.email }}">{{ user.email }}</a></td> <td> <a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="{{ _('View this user') }}<"></i></a> |