I am trying to do this:
{% for a in as %}
{% include "{(a}}.jinja"%}
{% endfor %}
But i am getting an Error, that {a}.jinja
is Not found.
So it seems that it does Not substitude the Variable. Why? How can i fix this?
Inside the {%%}
Block, i Can use variables directly. This Works:
{% include a + ".jinja" %}