<div id="shortcodes" class="widget widget_links clearfix ">
<ul class="nav nav-pills flex-column">
<li class="nav-item border-bottom">
<a class="nav-link {% if theme_id == null %}active{% endif %}" href="{{ path('evenement_all') }}">
{% if app.request.locale == "en" %}All {% else %}Toutes{% endif %}
</a>
</li>
{% for theme in themes %}
<li class="nav-item border-bottom">
<a class="nav-link {% if theme_id and theme_id == theme.id %}active{% endif %}" href="{{ path('evenement_all', {'theme_id': theme.id}) }}">
{% if app.request.locale == "en" %}
{{ theme.getEnDesignation() ? theme.getEnDesignation() : theme.designation }}
{% else %}
{{ theme.designation }}
{% endif %}
</a>
</li>
{% endfor %}
</ul>
</div>