changeset 954:de671e3af0e5 beta

added last login of user to admin users browse
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 24 Jan 2011 22:39:48 +0100
parents def3578dac8c
children 129eb072b8a8
files rhodecode/templates/admin/users/users.html
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/templates/admin/users/users.html	Sun Jan 23 00:23:28 2011 +0100
+++ b/rhodecode/templates/admin/users/users.html	Mon Jan 24 22:39:48 2011 +0100
@@ -33,6 +33,7 @@
             <th class="left">${_('username')}</th>
             <th class="left">${_('name')}</th>
             <th class="left">${_('lastname')}</th>
+            <th class="left">${_('last login')}</th>
             <th class="left">${_('active')}</th>
             <th class="left">${_('admin')}</th>
             <th class="left">${_('ldap')}</th>
@@ -45,6 +46,7 @@
                     <td>${h.link_to(user.username,h.url('edit_user', id=user.user_id))}</td>
                     <td>${user.name}</td>
                     <td>${user.lastname}</td>
+                    <td>${user.last_login}</td>
                     <td>${h.bool2icon(user.active)}</td>
                     <td>${h.bool2icon(user.admin)}</td>
                     <td>${h.bool2icon(user.is_ldap)}</td>