답변:
주석 태그는 https://docs.djangoproject.com/en/stable/ref/templates/builtins/#std:templatetag-comment에 문서화되어 있습니다.
{% comment %} this is a comment {% endcomment %}
한 줄 주석은 https://docs.djangoproject.com/en/stable/topics/templates/#comments에 설명되어 있습니다.
{# this won't be rendered #}
다음과 같은 전통적인 HTML 주석 과 달리 :
<!-- not so secret secrets -->
Django 템플릿 주석은 최종 HTML에서 렌더링되지 않습니다. 따라서 구현 세부 정보를 다음과 같이 자유롭게 넣을 수 있습니다.
여러 줄 :
{% comment %}
The other half of the flexbox is defined
in a different file `sidebar.html`
as <div id="sidebar-main">.
{% endcomment %}
한 줄:
{# jquery latest #}
{#
beware, this won't be commented out...
actually renders as regular body text on the page
#}
<a href="{% url 'view_name' %}"
아직 생성되지 않은 뷰에 특히 유용합니다 .
{% extends "file.html" %}
태그가 있으면 템플릿 파일 맨 앞에 태그를 배치해야합니다{% comment %}
.{% endcomment %}
그렇지 않으면<ExtendsNode: extends "file.html"> must be the first tag in the template
오류가 발생합니다. 누군가가 템플릿 상단에 여러 줄 주석을 배치하려고하는 경우를 말합니다.