Show teams_beta_seen.

master
Nick Sergeant 2015-07-22 14:02:32 -04:00
parent 66d0ea7a05
commit 307772165b
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ from django.contrib import admin
from accounts.models import UserProfile
class UserProfileAdmin(admin.ModelAdmin):
list_display = ('user', 'is_pro', 'stripe_id', 'gittip_username',)
list_display = ('user', 'is_pro', 'stripe_id', 'gittip_username', 'teams_beta_seen')
search_fields = ('user__username', 'gittip_username',)
admin.site.register(UserProfile, UserProfileAdmin)