<div class="row">
<span>{% trans %}Sort by{% endtrans %}:</span>
<ul class="list-group list-inline order-by list-group-horizontal">
<li {% if sort == 'date' %}aria-current="page"{% endif %}>
<a href="{{ path('pumukit_webtv_medialibrary_index', {'sort': 'date'}) }}" title="{% trans %}Sort by date{% endtrans %}">
{% trans %}Date{% endtrans %} ,
</a>
</li>
<li {% if sort == 'alphabetically' %}aria-current="page"{% endif %}>
<a href="{{ path('pumukit_webtv_medialibrary_index', {'sort': 'alphabetically'}) }}" title="{% trans %}Sort alphabetically{% endtrans %}">
{% trans %}Alphabetically{% endtrans %}
</a>
</li>
{% for tag in tags %}
<li {% if sort == 'tags' %}aria-current="page"{% endif %}>
<a href="{{ path('pumukit_webtv_medialibrary_index', {'sort': 'tags', 'p_tag': tag.cod }) }}" title="{% trans %}Sort by{% endtrans %} {{ tag.title }}">
, {{ tag.title }}
</a>
</li>
{% endfor %}
</ul>.
<div class="clearfix"></div>
</div>