aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/admin/dashboard.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-12 21:49:54 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-12 21:49:54 +0200
commit3ab21967201d5ed092bf1c2d3dea084aa30cabcb (patch)
tree1ea1661f8d2574880b1d7b674e228a6d95a5c8d8 /pyaggr3g470r/templates/admin/dashboard.html
parentUpdated meta description tag in layout.html. (diff)
downloadnewspipe-3ab21967201d5ed092bf1c2d3dea084aa30cabcb.tar.gz
newspipe-3ab21967201d5ed092bf1c2d3dea084aa30cabcb.tar.bz2
newspipe-3ab21967201d5ed092bf1c2d3dea084aa30cabcb.zip
Simplification of the login forms.
Diffstat (limited to 'pyaggr3g470r/templates/admin/dashboard.html')
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html
index 5c7fa5c1..4e60ad1d 100644
--- a/pyaggr3g470r/templates/admin/dashboard.html
+++ b/pyaggr3g470r/templates/admin/dashboard.html
@@ -9,18 +9,16 @@
<thead>
<tr>
<th>#</th>
- <th>{{ _('Firstname') }}</th>
- <th>{{ _('Lastname') }}</th>
+ <th>{{ _('Nickname') }}</th>
<th>{{ _('Email') }}</th>
<th>{{ _('Actions') }}</th>
</tr>
</thead>
<tbody>
- {% for user in users|sort(attribute="firstname") %}
+ {% for user in users|sort(attribute="nickname") %}
<tr>
<td>{{ loop.index }}</td>
- <td><a href="/admin/user/{{ user.id }}/">{{ user.firstname }}</a></td>
- <td>{{ user.lastname }}</td>
+ <td><a href="/admin/user/{{ user.id }}/">{{ user.nickname }}</a></td>
<td>{{ user.email }}</td>
<td>
<a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="{{ _('View this user') }}<"></i></a>
bgstack15