summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-03-08 00:13:41 -0800
committereliott <eliott@cactuswax.net>2008-03-08 00:13:41 -0800
commit9b7b5122544283fc32d81d785e94c5f4aacc0109 (patch)
treeba117f7fadc24737920fa4f1b9a711157e629cc5 /settings.py
parent7e2d0f2f0cd8f176cf82c02d704ad4fe25a07b3b (diff)
downloadarchweb-9b7b5122544283fc32d81d785e94c5f4aacc0109.tar.gz
archweb-9b7b5122544283fc32d81d785e94c5f4aacc0109.zip
Moved models around
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index 7051f0ca..fc5f6e38 100644
--- a/settings.py
+++ b/settings.py
@@ -67,7 +67,7 @@ TEMPLATE_DIRS = (
# Set django's User stuff to use our profile model
# format is app.model
-AUTH_PROFILE_MODULE = 'devel.UserProfile'
+AUTH_PROFILE_MODULE = 'main.UserProfile'
INSTALLED_APPS = (
'django.contrib.auth',
@@ -75,6 +75,7 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
+ 'archweb_dev.main', # contains shared models and libs
'archweb_dev.news',
'archweb_dev.packages',
'archweb_dev.todolists',