141 lines
7.1 KiB
Twig
141 lines
7.1 KiB
Twig
{% extends 'administrative/layout.html.twig' %}
|
|
|
|
{% block title %}Dokumentenübersicht{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="flex items-start justify-between pb-4">
|
|
<h1 class="text-2xl font-bold">
|
|
Dokumentenübersicht
|
|
</h1>
|
|
<div class="flex flex-col items-end space-y-2 md:flex-row md:items-center md:space-x-2 md:space-y-0">
|
|
<button type="button"
|
|
class="{{ html_classes('btn btn--small', { 'btn--secondary': filterDto.active }) }}"
|
|
title="Filter"
|
|
hx-get="{{ path('app_common_document_filter', { 'r': return_url() }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('filter', 'w-4 h-4 shrink-0') }}
|
|
{% if filterDto.active %}
|
|
<span class="whitespace-nowrap">{{ filterDto.activeFiltersCount }} Filter aktiv</span>
|
|
{% else %}
|
|
<span>Filter</span>
|
|
{% endif %}
|
|
</button>
|
|
{% if filterDto.active %}
|
|
<a href="{{ path('app_common_document_filter_reset', { 'r': return_url() }) }}"
|
|
class="btn btn--small btn--secondary">
|
|
Reset
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="data-table-wrapper">
|
|
<div class="data-table-wrapper__inner">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Einsatz­zeitraum', 'destination.dateFrom') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Destination', 'destination.product') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Jobprofil', 'job_profile.name') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Dokument', 'upload.type') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Teamer:in', 'teamer.lastName') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Status', 'upload.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>
|
|
<div class="flex items-start space-x-2">
|
|
{{ icon('flag-' ~ assignment.destination.country, 'w-5 h-5 shrink-0') }}
|
|
<div class="flex-1">
|
|
{{ assignment.destination.product }}
|
|
<br>
|
|
{{ assignment.destination.hotel }}
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
{{ assignment.jobProfile.name }}
|
|
</td>
|
|
<td>
|
|
{{ ('label.document.type.' ~ upload.type)|trans }}
|
|
</td>
|
|
<td>
|
|
{{ disposition.teamer }}
|
|
{% include '_partials/_teamer_deleted_badge.html.twig' with { 'teamer': disposition.teamer } %}
|
|
</td>
|
|
<td>
|
|
{{ upload.status|upload_status_badge }}
|
|
</td>
|
|
<td>
|
|
<div class="flex items-center space-x-2 justify-end">
|
|
{% if is_granted('DELETE', upload) %}
|
|
<button type="button"
|
|
class="text-red-500"
|
|
hx-get="{{ path('app_administrative_document_delete', { 'uuid': upload.uuid }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('delete') }}
|
|
</button>
|
|
{% endif %}
|
|
{% if is_granted('COMMENT', upload) %}
|
|
<button type="button"
|
|
class="{{ html_classes({ 'text-gray-300': not upload.comment }) }}"
|
|
title="{{ upload.comment ? 'Kommentar bearbeiten' : 'Kommentar hinzufügen' }}"
|
|
hx-get="{{ path('app_administrative_document_comment', { 'uuid': upload.uuid, 'r': return_url() }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('feedback') }}
|
|
</button>
|
|
{% endif %}
|
|
{% if is_granted('CHECK', upload) %}
|
|
<button type="button"
|
|
hx-get="{{ path('app_administrative_document_check', { 'uuid': upload.uuid, 'r': return_url() }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('edit') }}
|
|
</button>
|
|
{% endif %}
|
|
<a href="{{ path('app_common_download', { 'uuid': upload.uuid, 'inline': true }) }}"
|
|
target="_blank"
|
|
title="im Browser öffnen">
|
|
{{ icon('eye') }}
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="7">
|
|
Keine Daten...
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{{ knp_pagination_render(pagination) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|