aboutsummaryrefslogtreecommitdiffstats
path: root/account/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'account/admin.py')
-rw-r--r--account/admin.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/account/admin.py b/account/admin.py
index 8c38f3f..b5ec5b6 100644
--- a/account/admin.py
+++ b/account/admin.py
@@ -1,3 +1,10 @@
+# -*- coding: utf-8 -*-
+
from django.contrib import admin
-# Register your models here.
+from account.models import UserProfile
+
+
+admin.site.register(UserProfile)
+
+