Fix #148: User admin now includes signup and last login dates

This commit is contained in:
Eliot Berriot 2018-04-02 21:08:59 +02:00
parent fba9a5c97e
commit 39c5245c1b
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
2 changed files with 11 additions and 0 deletions

View File

@ -36,3 +36,13 @@ class MyUserCreationForm(UserCreationForm):
class UserAdmin(AuthUserAdmin):
form = MyUserChangeForm
add_form = MyUserCreationForm
list_display = [
'username',
'email',
'date_joined',
'last_login',
'privacy_level',
]
list_filter = [
'privacy_level',
]

View File

@ -0,0 +1 @@
User admin now includes signup and last login dates (#148)