Django 템플릿에 주석을 넣는 방법 나는 이것을 한 줄로 논평하고 싶다 {% if something.property %} ... {% # this is a comment %} {% if something.property %} ... Miles의 답변으로 {% comment %}...{% endcomment %}여러 줄 주석에 사용되지만 다음과 같이 같은 줄에 텍스트를 주석 처리 할 수도 있습니다. {# some text #} 주석 태그는 https://docs.djangoproject.com/en/stable/ref/templates/builtins/#std:templatetag-comment에 문서화되어 있습니다. {% comment %} this is a comment {% endcomment %..