templates: totally skip password account management block (#35471)

This commit is contained in:
Frédéric Péters 2019-08-20 10:59:18 +02:00
parent a93b5c516e
commit 4427875d67
1 changed files with 2 additions and 2 deletions

View File

@ -66,12 +66,12 @@
{% endblock %}
</div>
{% for id, block in frontends_block_by_id.items %}
<div class="block" id="account-management-{{ id }}">
{% if id != "password" %}
<div class="block" id="account-management-{{ id }}">
<h2>{{ block.name }}</h2>
{{ block.content|safe }}
</div>
{% endif %}
</div>
{% endfor %}
</div>
<br class="clear" />