Comments
To comment-out part of a line in a template, use the comment syntax which isby default set to {# … #}
. This is useful to comment out parts of thetemplate for debugging or to add information for other template designers oryourself:
{# note: commented-out template because we no longer use this
{% for user in users %}
...
{% endfor %}
#}