aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-20 19:29:58 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-20 19:29:58 +0200
commit80dafd54a6669cce50f5615c1582c4f618e3744c (patch)
tree285a2849df6f18f1a96ab66758f1ae5a9045c87d
parentbcc seems to be not working (diff)
downloadnewspipe-80dafd54a6669cce50f5615c1582c4f618e3744c.tar.gz
newspipe-80dafd54a6669cce50f5615c1582c4f618e3744c.tar.bz2
newspipe-80dafd54a6669cce50f5615c1582c4f618e3744c.zip
Added 'Last seen' column to the table of the dashboard.
-rw-r--r--pyaggr3g470r/templates/admin/dashboard.html2
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>
bgstack15