20 lines
659 B
Twig
20 lines
659 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Dokument ersetzen{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ form_start(form, { 'attr': { 'hx-post': app.request.uri, 'hx-target': '#htmx-modal', 'hx-swap': 'outerHTML' } }) }}
|
|
<div class="pb-4">
|
|
{% include '_partials/_upload_collection_form.html.twig' with {
|
|
'endpoint_upload': path('_uploader_upload_document'),
|
|
'max_filesize': 5,
|
|
'max_files': 1,
|
|
'accepted_files': 'application/pdf',
|
|
} %}
|
|
</div>
|
|
<button type="submit" class="btn">
|
|
ersetzen
|
|
</button>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
{% endblock %} |