我在模板中使用 django MPTT 模型,只想删除缩进。现在看起来像这样:
如何去除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 %}