{% if classifiedsAmount is not empty %} {% set links = [ { label: 'Wszystkie', key: 'all' }, { label: 'Prywatne', key: 'private' }, { label: 'Firmy', key: 'companies' }, ] %}
{% for row in links %} {% set class = ['btn', 'btn--light3', 'tab_buttons__btn'] %} {% set tabindex = 0 %} {% set type = row.label|lower %} {% set routeParams = app.request.query.all|merge({ slug: app.request.get('slug'), section: app.request.get('section'), page: null }) %} {% if type != 'wszystkie' %} {% set routeParams = routeParams|merge({ typ: type }) %} {% else %} {% set routeParams = routeParams|merge({ typ: null }) %} {% endif %} {% if app.request.get('typ')|default('wszystkie') == type %} {% set class = class|merge(['tab_buttons__btn--active', 'btn--not_hoverable']) %} {% set tabindex = -1 %} {% endif %} {{ row.label }} [{{ classifiedsAmount[row.key] }}] {% endfor %}
{% endif %}