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:
commit
d4686654da
|
@ -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