1 2 3 4 5 6 7 8 9 10 11
# -*- coding: utf-8 -*- from django.contrib import admin from account.models import UserProfile, UserFile admin.site.register(UserProfile) admin.site.register(UserFile)