You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To avoid the error above, change:
TEMPLATE_DIRS=(
os.path.join(BASE_DIR, 'templates'),
),
to TEMPLATES= [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
}]
for it to work properly
The text was updated successfully, but these errors were encountered:
To avoid the error above, change:
TEMPLATE_DIRS=(
os.path.join(BASE_DIR, 'templates'),
),
to TEMPLATES= [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
}]
for it to work properly
To avoid the error above, change:
TEMPLATE_DIRS=(
os.path.join(BASE_DIR, 'templates'),
),
to TEMPLATES= [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
}]
for it to work properly
The text was updated successfully, but these errors were encountered: