{% set url = app.request.uri %}
<a class="btn {% if 'filter' in url %} btn-outline-connect {% else %} btnSelected {% endif %} m-1" href="{{ path(currentPath,{}) }}" role="button"> {% if lang == "DE" %}Alle{% else %} All {% endif %}</a>
{% for item in industries %}
<a class="btn {% if item.industry in url %} btnSelected {% else %} btn-outline-connect {% endif%} m-1" href="{{ path(currentPath,{'filter':'industry:' ~ item.industry}) }}" role="button">{{ item.industry }} <span class="badge badge-dark">{{ item.number }}</span></a>
{% endfor %}