How to put comments in Django templates

后端 未结 6 1201
清歌不尽
清歌不尽 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:31

    Multiline comment in django templates use as follows ex: for .html etc.

    {% comment %} All inside this tags are treated as comment {% endcomment %}
    

提交回复
热议问题