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

19 lines
606 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}Edit Membre{% endblock %}
{% block body %}
<div class="card mb-3">
<div class="card-header">
<h1 class="h4 mb-0">Edit Membre</h1>
</div>
<div class="card-body">
{{ include('membre/_form.html.twig', {'button_label': 'Update'}) }}
<div class="d-flex gap-2 mt-2">
<a href="{{ path('app_membre_index') }}" class="btn btn-outline-secondary">Back to list</a>
{{ include('membre/_delete_form.html.twig') }}
</div>
</div>
</div>
{% endblock %}