aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-15 22:19:13 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-15 22:19:13 +0200
commit8f4868fdab8553b853d745dd1305886da06a9e50 (patch)
tree199cb727b395b6f78de81675f6815f6f21b10194 /pyaggr3g470r
parentList all users in the table. (diff)
downloadnewspipe-8f4868fdab8553b853d745dd1305886da06a9e50.tar.gz
newspipe-8f4868fdab8553b853d745dd1305886da06a9e50.tar.bz2
newspipe-8f4868fdab8553b853d745dd1305886da06a9e50.zip
Fixed error in template.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index 147edf49..6169476c 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 }}{{ if user.id == current_user.id }} (It's you!){{ endif }}</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>
bgstack15