Skip to content

Commit

Permalink
Add static and template paths to settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsok committed Oct 6, 2012
1 parent 02c8e3b commit 23d248a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions sms/core/settings.py
Expand Up @@ -73,9 +73,7 @@

# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
join(PROJECT_ROOT, 'static'),
)

# List of finder classes that know how to find static files in
Expand Down Expand Up @@ -112,9 +110,7 @@
WSGI_APPLICATION = 'core.wsgi.application'

TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
join(PROJECT_ROOT, 'templates'),
)

INSTALLED_APPS = (
Expand Down

0 comments on commit 23d248a

Please sign in to comment.