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

Resolve "Include signup date in users admin"

Closes #148

See merge request funkwhale/funkwhale!122
This commit is contained in:
Eliot Berriot 2018-04-02 19:11:20 +00:00
commit d4686654da
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)