Django templates: Configuration

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': {
            # ... some options here ...
        },
    },
]

Templates engines are configured with the TEMPLATES setting.

Related concepts

Django templates: Configuration — Structure map

Clickable & Draggable!

Django templates: Configuration — Related pages: