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:

  1. {# note: commented-out template because we no longer use this
  2. {% for user in users %}
  3. ...
  4. {% endfor %}
  5. #}