~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to wlprofile/admin.py

  • Committer: franku
  • Date: 2019-02-09 14:48:36 UTC
  • mfrom: (513.3.6 deleted_user2)
  • Revision ID: somal@arcor.de-20190209144836-7535ppq88svrewii
Fix showing username in search results if user has deleted himself. Show such users in some admin pages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
 
19
19
class ProfileAdmin(admin.ModelAdmin):
20
 
    list_display = ['user', 'time_zone', 'location']
 
20
    list_display = ['user', 'time_zone', 'location', 'deleted']
21
21
    list_per_page = 20
22
22
    ordering = ['-user']
23
23
    search_fields = ['user__username', 'user__first_name', 'user__last_name']