Files
Projet_Symfony_Quentin/templates/o/edit.html.twig

14 lines
306 B
Twig
Raw Normal View History

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