How to put comments in Django templates

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

    This way can be helpful if you want to comment some Django Template format Code.

    {#% include 'file.html' %#} (Right Way)

    Following code still executes if commented with HTML Comment.

    (Wrong Way)

提交回复
热议问题