aboutsummaryrefslogtreecommitdiffstats
path: root/account/admin.py
blob: ee568fcac0e90335f321d8f0fd644a90ae5d52b8 (plain)
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)