connexion base et création premier crud

This commit is contained in:
Logshiro
2025-10-16 17:01:43 +02:00
parent ea9a187326
commit 2e4dce40d4
38 changed files with 653 additions and 278 deletions

View File

@@ -3,11 +3,16 @@
{% block title %}Edit Membre{% endblock %}
{% block body %}
<h1>Edit Membre</h1>
{{ include('membre/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_membre_index') }}">back to list</a>
{{ include('membre/_delete_form.html.twig') }}
<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 %}