How to concat
a string and a jinja
expression inside jinja statement?
{% for pic in pictures %}
{% if pic.name == line.name %}
<img class="card-img-top" src="{% static 'orders/img/'pic.picture %}" >
{% endif %}
{% endfor %}
In this tag with Jinja, the pic.picture is a jinja express but how to concat
with 'orders/img/'?
Image:
Thanks.