{% if years < 10 %} You are a children {% elif years < 18 %} You are a teenager {% else %} You are an adult! {% endif %}
-
{% for city in array_city %}
- {{ city }} {% endfor %}
{{ my_hello | lower }}
{{ my_hello | upper }}
{{ my_hello | capfirst }}
You have {{ nb_products }} product{{ nb_products | pluralize }} in our cart.
I received {{ nb_diaries }} diar{{ nb_diaries|pluralize:"y,ies"}}.
{% autoescape on %}
{{ variable3 }}
{{ variable4|escape }}
{% endautoescape %}
{{ variable5 }}
{{ variable1 }}
{{ variable2|safe }} {% endautoescape %} {% autoescape off %}
{{ text|truncatechars:14 }}