Skip to content
Snippets Groups Projects
Verified Commit 39c5245c authored by Eliot Berriot's avatar Eliot Berriot
Browse files

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

parent fba9a5c9
No related branches found
No related tags found
No related merge requests found
......@@ -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',
]
User admin now includes signup and last login dates (#148)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment