McDoPlus/templates/ticket_service/edit.html.twig
ExostFlash 755b6c2ccb add
2023-11-27 13:13:11 +01:00

13 lines
345 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit Ticket{% endblock %}
{% block body %}
<h1>Edit Ticket</h1>
{{ include('ticket_service/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_ticket_service_index') }}">back to list</a>
{{ include('ticket_service/_delete_form.html.twig') }}
{% endblock %}