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

Merge branch '148-user-admin' into 'develop'

Resolve "Include signup date in users admin"

Closes #148

See merge request funkwhale/funkwhale!122
parents fba9a5c9 39c5245c
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