settings.py.example fixes

This commit is contained in:
Mike 2017-09-19 05:00:05 -04:00
parent 0326836544
commit 889fcfd0e0

View File

@ -106,7 +106,7 @@ MIDDLEWARE = [
'django.middleware.locale.LocaleMiddleware', 'django.middleware.locale.LocaleMiddleware',
] ]
ROOT_URLCONF = 'alliance_auth.urls' ROOT_URLCONF = 'allianceauth.urls'
LOCALE_PATHS = ( LOCALE_PATHS = (
os.path.join(BASE_DIR, 'locale/'), os.path.join(BASE_DIR, 'locale/'),
@ -122,8 +122,7 @@ TEMPLATES = [
{ {
'BACKEND': 'django.template.backends.django.DjangoTemplates', 'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [ 'DIRS': [
os.path.join(BASE_DIR, 'customization/templates'), os.path.join(BASE_DIR, 'allianceauth/templates'),
os.path.join(BASE_DIR, 'stock/templates'),
], ],
'APP_DIRS': True, 'APP_DIRS': True,
'OPTIONS': { 'OPTIONS': {