Why does the Jinja2 template is throwing jinja2.exceptions.TemplateNotFound error even though file is there?
Advertisements I’m struggling with the Jinja2 templating system. Even though the error path is pointing exactly to the .jinja2 file it is throwing template not found error. Here is the current structure of folder. ❯ tree . ├── generate_template.py └── templates ├── kustomization.jinja2 ├── pwa.jinja2 └── shopware.jinja2 Here is content of generate_template.py import jinja2 import… Read More Why does the Jinja2 template is throwing jinja2.exceptions.TemplateNotFound error even though file is there?