[Fixed]-Django string concatenation inside template tag best practice

25👍

You can concatenate two strings in Django template as follows:

{{"First String "|add:"Second String"}}

Just replace the two strings with your own variable.

8👍

What I use when I want to concatenate strings in Django templates from variables (examples taken from my own code, tell me if you need something closer to your case):

<html>
<input id="myid_{{idBase}}_{{idFinal}}" type="checkbox"></input>
</html>

and inside a django tag, I use the keyword “add” associated with the keywork with

{% with 'images/'|add:file_name as image_static %}
     <img src="{% static image_static %}" title = "{{ tooltip }}"  alt = "{{ title }}"/>
{% endwith %}

Leave a comment