snipt/accounts/admin.py

12 lines
377 B
Python
Raw Normal View History

2012-06-26 08:33:29 -07:00
from accounts.models import UserProfile
2015-07-24 18:39:25 -07:00
from django.contrib import admin
2012-06-26 08:33:29 -07:00
2015-07-24 18:28:31 -07:00
2012-06-26 08:33:29 -07:00
class UserProfileAdmin(admin.ModelAdmin):
2019-01-23 15:52:55 -08:00
list_display = ("user", "is_pro", "stripe_id", "gittip_username", "teams_beta_seen")
list_filter = ["teams_beta_seen", "teams_beta_applied"]
search_fields = ("user__username", "gittip_username")
2012-06-26 08:33:29 -07:00
admin.site.register(UserProfile, UserProfileAdmin)