class filesystem.Loader
Loads templates from the filesystem, according to DIRS.
This loader is enabled by default. However it won’t find any templates until you set DIRS to a non-empty list:
TEMPLATES = [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
}]
django.template.loaders.app_directories.Loader
Please login to continue.