From e47d909e41d663755195b41d58caf9a76e0db050 Mon Sep 17 00:00:00 2001 From: catborise Date: Fri, 6 Oct 2023 16:15:35 +0300 Subject: [PATCH] show last login time of users --- admin/templates/admin/user_list.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/admin/templates/admin/user_list.html b/admin/templates/admin/user_list.html index 2e0518b..f0e0b27 100644 --- a/admin/templates/admin/user_list.html +++ b/admin/templates/admin/user_list.html @@ -30,6 +30,7 @@ {% trans "Username" %} {% trans "Status" %} + {% trans "Last Login" %} {% trans "Staff" %} {% trans "Superuser" %} {% trans "Can Clone" %} @@ -50,6 +51,7 @@ {% trans "Blocked" %} {% endif %} + {{ user.last_login }} {% if user.is_staff %}{% bs_icon 'check' %}{% endif %} {% if user.is_superuser %}{% bs_icon 'check' %}{% endif %} {% if can_clone %}{% bs_icon 'check' %}{% endif %}