Browse Source

Ajusta settings.TEMPLATES

atendimento
Sesostris Vieira 9 years ago
parent
commit
3514b360fc
  1. 31
      sigi/settings/base.py
  2. 1
      sigi/settings/dev.py

31
sigi/settings/base.py

@ -30,13 +30,27 @@ MANAGERS = ADMINS
SITE_ID = 1 SITE_ID = 1
TEMPLATE_CONTEXT_PROCESSORS = DEFAULT_SETTINGS.TEMPLATE_CONTEXT_PROCESSORS + ( TEMPLATES = [
'django.core.context_processors.request', {
) 'BACKEND': 'django.template.backends.django.DjangoTemplates',
# List of callables that know how to import templates from various sources. 'DIRS': [
TEMPLATE_LOADERS = ('django.template.loaders.filesystem.Loader', os.path.join(BASE_DIR, 'templates'),
'django.template.loaders.app_directories.Loader', ],
) 'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.contrib.messages.context_processors.messages',
'django.core.context_processors.request',
],
},
},
]
# Database routers # Database routers
DATABASE_ROUTERS = ['moodlerouter.MoodleRouter', ] DATABASE_ROUTERS = ['moodlerouter.MoodleRouter', ]
@ -119,9 +133,6 @@ SERVER_EMAIL = 'sigi@interlegis.leg.br'
DEFAULT_FROM_EMAIL = 'spdt@interlegis.leg.br' DEFAULT_FROM_EMAIL = 'spdt@interlegis.leg.br'
EMAIL_SUBJECT_PREFIX = u'[SIGI]' EMAIL_SUBJECT_PREFIX = u'[SIGI]'
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
MEDIA_ROOT = os.path.join(BASE_DIR, 'media') MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/' MEDIA_URL = '/media/'

1
sigi/settings/dev.py

@ -20,7 +20,6 @@ DATABASES = {
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
TEMPLATE_DEBUG = DEBUG
DEBUG_TOOLBAR_CONFIG = { DEBUG_TOOLBAR_CONFIG = {
'SHOW_TEMPLATE_CONTEXT': True, 'SHOW_TEMPLATE_CONTEXT': True,
} }

Loading…
Cancel
Save