variable template examples dirs bootstrap django

template - cómo poner comentarios en plantillas django



templates dirs django (3)

Me gustaría comentar esto con una línea

{% if something.property %} <table> <tr>... {% # this is a comment %} {% if something.property %} <table> <tr>...


Como respuesta por Millas, {% comment %}...{% endcomment %} se usa para comentarios de varias líneas, pero también puede comentar el texto en la misma línea de la siguiente manera:

{# some text #}



Usando la notación {# #} , así:

{# Everything you see here is a comment. It won''t show up in the HTML output. #}