[Answered ]-How to use variables in template tag arguments?

2👍

You can use with with an add template filter as suggested here:

{% with 'teammembers/'|add:image as image_static %}
    <img src="{% static image_static %}">
{% endwith %}
👤alecxe

Leave a comment