Add extra UserProfile info to admin screen
This commit is contained in:
parent
7ac3d82ac4
commit
7f0a4abb04
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ admin.site.register(City, CityAdmin)
|
||||||
|
|
||||||
class ProfileAdmin(admin.ModelAdmin):
|
class ProfileAdmin(admin.ModelAdmin):
|
||||||
raw_id_fields = ('city',)
|
raw_id_fields = ('city',)
|
||||||
list_display = ('user', 'realname', 'avatar', 'web_url')
|
list_display = ('user', 'realname', 'city', 'web_url', 'send_notifications')
|
||||||
|
list_filter = ('send_notifications', 'user__last_login')
|
||||||
admin.site.register(UserProfile, ProfileAdmin)
|
admin.site.register(UserProfile, ProfileAdmin)
|
||||||
|
|
||||||
class OrgAdmin(admin.ModelAdmin):
|
class OrgAdmin(admin.ModelAdmin):
|
||||||
|
|
Loading…
Reference in a new issue