FestinHegre/templates/plats/edit.html.twig
2024-11-21 15:11:11 +01:00

14 lines
316 B
Twig

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