We use Askama with several templates in different directories. These directories are all subfolders of one parent directory.
Currently, we need to list all of them in the askama.toml file:
[general]
dirs = [
"templates/folder1",
"templates/folder2",
# etc
"templates/folder10"
]
It would be awesome if these directory paths supported globstar expressions to simplify it like this:
[general]
dirs = [
"templates/**"
]
Thank you for Askama, it's a game changer!
We use Askama with several templates in different directories. These directories are all subfolders of one parent directory.
Currently, we need to list all of them in the
askama.tomlfile:It would be awesome if these directory paths supported globstar expressions to simplify it like this:
Thank you for Askama, it's a game changer!