PyCharm - indent {% block name%} tags with Reformat code

Is it possible not to fall back on the children of the {% block %}django tag when converting the code?

I would like to have reformed code:

{% block name %}
<div>
    <p>Some text.</p>
</div>
{% endblock name %}
<Not p> No:
{% block name %}
    <div>
        <p>Some text.</p>
    </div>
{% endblock name %}
+4
source share

All Articles