diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-20 19:29:58 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-20 19:29:58 +0200 |
commit | 80dafd54a6669cce50f5615c1582c4f618e3744c (patch) | |
tree | 285a2849df6f18f1a96ab66758f1ae5a9045c87d /pyaggr3g470r/templates | |
parent | bcc seems to be not working (diff) | |
download | newspipe-80dafd54a6669cce50f5615c1582c4f618e3744c.tar.gz newspipe-80dafd54a6669cce50f5615c1582c4f618e3744c.tar.bz2 newspipe-80dafd54a6669cce50f5615c1582c4f618e3744c.zip |
Added 'Last seen' column to the table of the dashboard.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/admin/dashboard.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html index 911ce670..3e5b019e 100644 --- a/pyaggr3g470r/templates/admin/dashboard.html +++ b/pyaggr3g470r/templates/admin/dashboard.html @@ -11,6 +11,7 @@ <th>#</th> <th>{{ _('Nickname') }}</th> <th>{{ _('Email') }}</th> + <th>{{ _('Last seen') }}</th> <th>{{ _('Actions') }}</th> </tr> </thead> @@ -24,6 +25,7 @@ <td><a href="/admin/user/{{ user.id }}/">{{ user.nickname }}</a></td> {% endif %} <td><a href="mailto:{{ user.email }}">{{ user.email }}</a></td> + <td>{{ user.last_seen }}</td> <td> <a href="/admin/user/{{ user.id }}/"><i class="glyphicon glyphicon-user" title="{{ _('View this user') }}"></i></a> <a href="/admin/edit_user/{{ user.id }}/"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this user') }}"></i></a> |