FestinHegre/templates/reservations/edit.html.twig

22 lines
597 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}Edit Réservation{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/ControllerVues/edit.css') }}">
{% endblock %}
{% block body %}
<div class="page-container">
<h1 class="page-title">Edit Réservation</h1>
{{ include('reservations/_form.html.twig', {'button_label': 'Update'}) }}
<div class="actions">
<a href="{{ path('app_reservations_index') }}">Back to list</a>
</div>
{{ include('reservations/_delete_form.html.twig') }}
</div>
{% endblock %}