Skip to content

Commit

Permalink
Using contrib version of staticfiles, which is new to Django 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ktonon committed Aug 21, 2011
1 parent ec1181a commit f6f7b7c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions mingus/settings.py
Expand Up @@ -8,7 +8,6 @@

#staticfiles app values
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static', 'mingus')
STATICFILES_DIRS = (
os.path.join(PROJECT_ROOT, 'static', 'betweenconcepts'),
os.path.join(PROJECT_ROOT, 'static', 'mingus'),
Expand Down Expand Up @@ -47,9 +46,9 @@
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.static",
"basic.blog.context_processors.blog_settings",
"navbar.context_processors.navbars",
"staticfiles.context_processors.static_url",
)

INSTALLED_APPS = (
Expand All @@ -61,6 +60,7 @@
'django.contrib.sitemaps',
'django.contrib.flatpages',
'django.contrib.redirects',
'django.contrib.staticfiles',

'django_extensions',
'tagging',
Expand Down Expand Up @@ -90,7 +90,6 @@
'mingus.core',
'debug_toolbar',

'staticfiles',
'tinymce',
'django_wysiwyg',
'cropper',
Expand Down

0 comments on commit f6f7b7c

Please sign in to comment.