blob: c99922b661f0107068d768e2726da96a6684c377 (
plain)
1
2
3
4
5
6
7
8
|
from django.contrib import admin
from models import UserProfile
class UserProfileAdmin(admin.ModelAdmin):
list_display = ('user', )
admin.site.register(UserProfile, UserProfileAdmin)
|