Package madrona :: Package user_profile :: Module admin
[hide private]

Source Code for Module madrona.user_profile.admin

1  from django.contrib import admin 
2  from models import UserProfile 
3   
4 -class UserProfileAdmin(admin.ModelAdmin):
5 pass
6 7 admin.site.register(UserProfile, UserProfileAdmin) 8