aboutsummaryrefslogtreecommitdiffstats
path: root/ryuslash/settings.py
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-05-22 23:46:09 +0200
committerGravatar Tom Willemse2013-05-22 23:46:09 +0200
commitd394b2c40ee94394679700e5ff2858e1c95c7262 (patch)
treebd15438d214eefa15d55f56d4cb2b5d04361e4f5 /ryuslash/settings.py
parentc4684123b3323a9a61fe1eea5b3228086bfcb8ee (diff)
downloadryuslash.org-d394b2c40ee94394679700e5ff2858e1c95c7262.tar.gz
ryuslash.org-d394b2c40ee94394679700e5ff2858e1c95c7262.zip
Add Feed to the database
Instead of specifying the feeds to use in the `local_settings.py' file specify them with the django admin interface. This means that the `django.contrib.admin', `django.contrib.auth' and all their dependencies have been added to the project.
Diffstat (limited to 'ryuslash/settings.py')
-rw-r--r--ryuslash/settings.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/ryuslash/settings.py b/ryuslash/settings.py
index c5eecee..4d86769 100644
--- a/ryuslash/settings.py
+++ b/ryuslash/settings.py
@@ -70,11 +70,16 @@ TEMPLATE_DIRS = (
# Don't forget to use absolute paths, not relative paths.
)
-INSTALLED_APPS = ('django.contrib.contenttypes',
- 'django.contrib.sessions',
- 'django.contrib.staticfiles',
- 'aggregator',
- 'south')
+INSTALLED_APPS = (
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.staticfiles',
+ 'django.contrib.messages',
+ 'django.contrib.admin',
+ 'aggregator',
+ 'south'
+)
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to