91 lines
3.7 KiB
Twig
91 lines
3.7 KiB
Twig
{% extends 'administrative/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, 'Dateiname', 'upload.originalFilename') }}
|
|
</th>
|
|
<th>
|
|
Dateigröße
|
|
</th>
|
|
<th>
|
|
Upload am
|
|
</th>
|
|
<th>
|
|
Upload von
|
|
</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for document in pagination %}
|
|
<tr>
|
|
<td>
|
|
{{ document.displayName ? document.displayName : document.originalFilename }}
|
|
</td>
|
|
<td>
|
|
{{ document.size|file_size }}
|
|
</td>
|
|
<td>
|
|
{{ document.createdAt|date('d.m.Y') }}
|
|
</td>
|
|
<td>
|
|
{{ document.createdBy }}
|
|
</td>
|
|
<td>
|
|
<div class="flex items-center space-x-2 justify-end">
|
|
<button type="button"
|
|
class="text-red-500"
|
|
hx-get="{{ path('app_administrative_system_document_delete', { 'uuid': document.uuid }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('delete') }}
|
|
</button>
|
|
<button type="button"
|
|
hx-get="{{ path('app_administrative_system_document_replace', { 'uuid': document.uuid }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('refresh') }}
|
|
</button>
|
|
<button type="button"
|
|
hx-get="{{ path('app_administrative_system_document_edit', { 'uuid': document.uuid }) }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
{{ icon('edit') }}
|
|
</button>
|
|
<a href="{{ path('app_common_download', { 'uuid': document.uuid }) }}"
|
|
title="Download">
|
|
{{ icon('download') }}
|
|
</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="5">
|
|
Keine Daten...
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{{ knp_pagination_render(pagination) }}
|
|
</div>
|
|
</div>
|
|
<button type="button"
|
|
class="btn"
|
|
hx-get="{{ path('app_administrative_system_document_upload') }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend">
|
|
Dokumente hinzufügen
|
|
</button>
|
|
{% endblock %} |