Hello World Django

{{my_var}}
{% if years < 10 %} You are a children {% elif years < 18 %} You are a teenager {% else %} You are an adult! {% endif %}

{{ 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 %}

{{ variable1 }}

{{ variable2|safe }} {% endautoescape %} {% autoescape off %}

{{ variable3 }} {{ variable4|escape }} {% endautoescape %} {{ variable5 }}

{{ text|truncatechars:14 }}