Render category tree on category pages

This commit is contained in:
2026-01-26 08:58:16 +01:00
committed by krzysiej
parent 53b0bd6894
commit eb2eee53bd
4 changed files with 10 additions and 9 deletions

View File

@@ -1,10 +1,10 @@
{% extends "template.html.twig" %}
{% block content %}
{#{% cache 'list_' ~ listType %}#}
{% cache 'list_' ~ listType %}
{% if listType starts with 'category_' %}
{{ renderCategoryTree(categoryTree) | raw }}
{{ renderCategoryTree(categoryTree, category) | raw }}
{% endif %}
<div class="table-responsive">
@@ -71,5 +71,5 @@
{% endfor %}
</table>
</div>
{#{% endcache %}#}
{% endcache %}
{% endblock %}