Ignore everything between {% comment %} and {% endcomment %}
Jun 302009
There are two ways to make comments in Python.
1.
# single line comment
2.
“””
multiple line comments
here
“””
Jun 282009
In html, if you want to make a comment, then use
<!–
your comment which will not affect the code
–>
