adding templates and froyo and selenium to the settings

parent a9c71fd2
...@@ -3,3 +3,4 @@ Scripts/ ...@@ -3,3 +3,4 @@ Scripts/
geckodriver.log geckodriver.log
__pycache__ __pycache__
*.pyc *.pyc
pyvenv.cfg
...@@ -37,6 +37,8 @@ INSTALLED_APPS = [ ...@@ -37,6 +37,8 @@ INSTALLED_APPS = [
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'selenium',
'froyo',
] ]
MIDDLEWARE = [ MIDDLEWARE = [
...@@ -54,7 +56,7 @@ ROOT_URLCONF = 'thegoodplace.urls' ...@@ -54,7 +56,7 @@ ROOT_URLCONF = 'thegoodplace.urls'
TEMPLATES = [ TEMPLATES = [
{ {
'BACKEND': 'django.template.backends.django.DjangoTemplates', 'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [], 'DIRS': [os.path.join(BASE_DIR, 'templates'), os.path.join(BASE_DIR, 'heroes', 'templates')],
'APP_DIRS': True, 'APP_DIRS': True,
'OPTIONS': { 'OPTIONS': {
'context_processors': [ 'context_processors': [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment