summaryrefslogtreecommitdiffstats
path: root/module/web/pyload/admin.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-12-16 22:49:48 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-12-16 22:49:48 +0100
commitea5dbe7e25b156bb0b2e9e6da06c7da9549ddbe5 (patch)
treedf4f212d5d320700dc8db4509fc9326e385d0899 /module/web/pyload/admin.py
parentFixed Relink.us, Uploaded.to Name Bug (diff)
parentWebinterface authsystem (diff)
downloadpyload-ea5dbe7e25b156bb0b2e9e6da06c7da9549ddbe5.tar.xz
merged
Diffstat (limited to 'module/web/pyload/admin.py')
-rw-r--r--module/web/pyload/admin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/pyload/admin.py b/module/web/pyload/admin.py
index 11f325200..99cb28836 100644
--- a/module/web/pyload/admin.py
+++ b/module/web/pyload/admin.py
@@ -1,12 +1,12 @@
# -*- coding: utf-8 -*-
from django.contrib import admin
-from models import UserProfile
+from models import Prefs
from django.contrib.auth.models import User
from django.contrib.auth.admin import UserAdmin as RealUserAdmin
class UserProfileInline(admin.StackedInline):
- model = UserProfile
+ model = Prefs
class UserAdmin(RealUserAdmin):
inlines = [ UserProfileInline ]