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

11 lines
262 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Ticket{% endblock %}
{% block body %}
<h1>Create new Ticket</h1>
{{ include('ticket_service/_form.html.twig') }}
<a href="{{ path('app_ticket_service_index') }}">back to list</a>
{% endblock %}