diff options
Diffstat (limited to 'pyaggr3g470r/templates/admin/dashboard.html')
-rw-r--r-- | pyaggr3g470r/templates/admin/dashboard.html | 8 |
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> |