Use of a control structure to parse a list of values:
{% for item in values %} {% if item != 3 %} {# Do not show the item with a value of 3 #}
Item n.{{ forloop.counter }}: {{ item }}
{% endif %} {% endfor %}