How to put comments in Django templates

后端 未结 6 1225
清歌不尽
清歌不尽 2020-12-04 07:46

I would like to comment this with a line

{% if something.property %}
    ...



{% # this is a comment %}
{% if something.pr         
6条回答
  •  [愿得一人]
    2020-12-04 08:46

    As answer by Miles, {% comment %}...{% endcomment %} is used for multi-line comments, but you can also comment out text on the same line like this:

    {# some text #}
    

提交回复
热议问题