mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 06:59:17 +02:00
Fix #148: User admin now includes signup and last login dates
This commit is contained in:
parent
fba9a5c97e
commit
39c5245c1b
2 changed files with 11 additions and 0 deletions
|
@ -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',
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue