diff --git a/templates/admin/index.html.twig b/templates/admin/index.html.twig index cb9d319..023bf9c 100644 --- a/templates/admin/index.html.twig +++ b/templates/admin/index.html.twig @@ -1,7 +1,7 @@ {% extends 'admin/layout.html.twig' %} {% macro dot() %} - + {% endmacro %} @@ -19,8 +19,13 @@ {% for application in applications %} {% set assignment = application.assignment %}
  • - - {{ application.teamer.fullName(true) }}{{ _self.dot() }}{{ assignment.effectivePeriod.start|date('d.m.Y') }} - {{ assignment.effectivePeriod.end|date('d.m.Y') }}{{ _self.dot() }}{{ assignment.jobProfile.name }} + + {{ icon('hand', 'w-4 h-4 shrink-0') }} + {{ application.teamer.fullName(true) }} + {{ _self.dot() }} + {{ assignment.effectivePeriod.start|date('d.m.y') }} - {{ assignment.effectivePeriod.end|date('d.m.y') }} + {{ _self.dot() }} + {{ assignment.jobProfile.name }}
  • {% else %} @@ -45,8 +50,11 @@ {% else %} {% set url = path('app_admin_teamer_profile', { 'uuid': document.owner.teamer.uuid, 'r': return_url() }) %} {% endif %} - - {{ document.owner.teamer.fullName(true) }}{{ _self.dot() }}{{ document.originalFilename }} + + {{ icon('download', 'w-4 h-4 shrink-0') }} + {{ document.owner.teamer.fullName(true) }} + {{ _self.dot() }} + {{ document.originalFilename }} {% else %} @@ -63,8 +71,13 @@