Fix #148: User admin now includes signup and last login dates
This commit is contained in:
parent
fba9a5c97e
commit
39c5245c1b
|
@ -36,3 +36,13 @@ class MyUserCreationForm(UserCreationForm):
|
||||||
class UserAdmin(AuthUserAdmin):
|
class UserAdmin(AuthUserAdmin):
|
||||||
form = MyUserChangeForm
|
form = MyUserChangeForm
|
||||||
add_form = MyUserCreationForm
|
add_form = MyUserCreationForm
|
||||||
|
list_display = [
|
||||||
|
'username',
|
||||||
|
'email',
|
||||||
|
'date_joined',
|
||||||
|
'last_login',
|
||||||
|
'privacy_level',
|
||||||
|
]
|
||||||
|
list_filter = [
|
||||||
|
'privacy_level',
|
||||||
|
]
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
User admin now includes signup and last login dates (#148)
|
Loading…
Reference in New Issue