La fonction de suggestion automatique permet d'affiner rapidement votre recherche en suggérant des correspondances possibles au fur et à mesure de la frappe.
{% set fils = module.fil %}
{% for fil in fils %}
{{ fil.filter_title }}
{% for accordion in fil.accordion %}
..
{# accordion code here #}
..
{% endfor %}
{% endfor %}
{% set fils = module.fil %}
{% for fil in fils %}
{{ fil.filter_title }}
{% for accordion in fil.accordion %}
..
{# accordion code here #}
..
{% endfor %}
{% endfor %}
Actually, my goal is to have a group of filters, which each filter has a group of accordions inside. In this case, Filter Group has a loop that works fine and an accordion group inside the filter group has also loop and shows nothing in output.
Please tell me if it's possible at all to have a repeat group inside another repeated group.