diff --git a/src/Bundle/ChillMainBundle/Resources/views/UserJob/index.html.twig b/src/Bundle/ChillMainBundle/Resources/views/UserJob/index.html.twig index 8f037f150..392ae79fd 100644 --- a/src/Bundle/ChillMainBundle/Resources/views/UserJob/index.html.twig +++ b/src/Bundle/ChillMainBundle/Resources/views/UserJob/index.html.twig @@ -8,7 +8,7 @@   {% endblock %} {% block table_entities_tbody %} - {% for entity in entities %} + {% for entity in entities|sort((a, b) => a.label|localize_translatable_string <=> b.label|localize_translatable_string) %} {{ entity.id }} {{ entity.label|localize_translatable_string }} @@ -23,4 +23,4 @@ {% endfor %} {% endblock %} {% endembed %} -{% endblock content %} +{% endblock content %} \ No newline at end of file