16 lines
522 B
Twig
16 lines
522 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Feedback freigeben{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ form_start(form, { 'attr': { 'hx-post': app.request.uri, 'hx-target': '#htmx-modal', 'hx-swap': 'outerHTML' } }) }}
|
|
<div class="flex flex-col space-y-4 pb-4">
|
|
{{ form_row(form.comment) }}
|
|
{{ form_row(form.commentInternal) }}
|
|
</div>
|
|
<button type="submit" class="btn">
|
|
Speichern und freigeben
|
|
</button>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
{% endblock %} |