diff options
author | eliott <eliott@cactuswax.net> | 2008-03-08 00:13:41 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-03-08 00:13:41 -0800 |
commit | 9b7b5122544283fc32d81d785e94c5f4aacc0109 (patch) | |
tree | ba117f7fadc24737920fa4f1b9a711157e629cc5 /settings.py | |
parent | 7e2d0f2f0cd8f176cf82c02d704ad4fe25a07b3b (diff) |
Moved models around
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 3 |
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', |