Answers for "BASE_DIR / "templates" and os.path.join(PROJECT_PATH, 'templates/')"

0

'DIRS': [os.path.join(BASE_DIR, 'templates')],

Incorrect syntax in polls app tutorial by Django

Use this: 
os.path.join(BASE_DIR, 'templates')

instead of this:
BASE_DIR / 'templates'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                # codes...
            ],
        },
    },
]
Posted by: Guest on November-22-2020

Code answers related to "BASE_DIR / "templates" and os.path.join(PROJECT_PATH, 'templates/')"

Python Answers by Framework

Browse Popular Code Answers by Language