Django MPTT 如何从 html 模板中删除缩进

时间:2021-08-01 22:20:55

标签: python django django-mptt

我在模板中使用 django MPTT 模型,只想删除缩进。现在看起来像这样:

enter image description here

如何去除html模板中的缩进?

这是我的 html:

 {% load mptt_tags %}
                            
 {%  recursetree contact %}


       {{node.message}}


      {% if not node.is_leaf_node %}
      <div class="children pl-2 pl-md-5">
      {{ children }}

     
{% endif %}
{% endrecursetree %}

0 个答案:

没有答案