snipt/accounts/admin.py

11 lines
262 B
Python
Raw Normal View History

2012-06-26 08:33:29 -07:00
from django.contrib import admin
from accounts.models import UserProfile
class UserProfileAdmin(admin.ModelAdmin):
2012-07-18 21:39:43 -07:00
list_display = ('user', 'is_pro', 'stripe_id',)
2012-07-11 23:03:46 -07:00
search_fields = ('user__username',)
2012-06-26 08:33:29 -07:00
admin.site.register(UserProfile, UserProfileAdmin)