83 lines
3.7 KiB
Twig
83 lines
3.7 KiB
Twig
{% extends 'admin/layout.html.twig' %}
|
|
|
|
{% block title %}Dokumentenübersicht{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="text-2xl font-bold pb-8">
|
|
Dokumentenübersicht
|
|
</h1>
|
|
<div class="data-table-wrapper">
|
|
<div class="data-table-wrapper__inner">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Einsatzzeitraum', 'destination.dateFrom') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Jobprofil', 'job_profile.name') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Destination', 'destination.product') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Dokument', 'upload.type') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Teamer', 'teamer.lastName') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Status', 'disposition.status') }}
|
|
</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for upload in pagination %}
|
|
{% set disposition = upload.disposition %}
|
|
{% set assignment = disposition.assignment %}
|
|
<tr>
|
|
<td>
|
|
{{ assignment.destination.dateFrom|date('d.m.Y') }}
|
|
-
|
|
{{ assignment.destination.dateTo|date('d.m.Y') }}
|
|
</td>
|
|
<td>
|
|
{{ assignment.jobProfile.name }}
|
|
</td>
|
|
<td>
|
|
{{ assignment.destination.product }}
|
|
<br>
|
|
{{ assignment.destination.hotel }}
|
|
</td>
|
|
<td>
|
|
{{ ('label.document.type.' ~ upload.type)|trans }}
|
|
</td>
|
|
<td>
|
|
{{ disposition.teamer }}
|
|
</td>
|
|
<td>
|
|
{{ ('label.document.status.' ~ upload.status)|trans }}
|
|
</td>
|
|
<td>
|
|
<div class="flex items-center space-x-2">
|
|
<a href="{{ path('app_common_download', { 'uuid': upload.uuid }) }}"
|
|
title="Download"
|
|
target="_blank">
|
|
{{ icon('download') }}
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="7">
|
|
Keine Daten...
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |