Files
myep-team/templates/administrative/document/modal_comment.html.twig
T
2026-08-13 17:20:17 +02:00

25 lines
770 B
Twig

{% extends 'htmx_modal.html.twig' %}
{% block title %}Kommentar{% endblock %}
{% block content %}
<a href="{{ path('app_common_download', { 'uuid': document.uuid, 'inline': true }) }}"
target="_blank"
class="flex justify-between items-center pb-4"
title="Dokument öffnen">
<h2 class="font-bold text-lg">
{{ ('label.document.type.' ~ document.type)|trans }} {{ document.disposition.teamer }} vom {{ document.createdAt|date('d.m.Y') }}
</h2>
{{ icon('eye') }}
</a>
{{ form_start(form) }}
<div class="pb-4">
{{ form_row(form.comment) }}
</div>
<button type="submit" class="btn">
Aktualisieren
</button>
{{ form_rest(form) }}
{{ form_end(form) }}
{% endblock %}