4

include タグを使用して挿入するテンプレートがあります。

{% include 'template.html' %}

また、別の場所では、その内容を生のまま表示したいと考えています。どうすればこれを達成できますか?

4

3 に答える 3

3

次のようなものを試すことができます:

page1.html

{%with flag="norender" %}
    {% include "template.html" %}
{%endwith%}

template.html

{%if flag == "norender" %}
    {%verbatim%}
{%endif%}
        {#your html #}
{%if flag == "norender" %}
    {%endverbatim%}
{%endif%}
于 2013-06-16T07:04:34.280 に答える