HegreEtConfort/templates/fault/edit.html.twig

14 lines
316 B
Twig
Raw Permalink Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}Edit Fault{% endblock %}
{% block body %}
<h1>Edit Fault</h1>
{{ include('fault/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_fault_index') }}">back to list</a>
{{ include('fault/_delete_form.html.twig') }}
{% endblock %}