Files
Projet_Symfony_Quentin/templates/membre/show.html.twig
2025-10-16 17:01:43 +02:00

39 lines
1.1 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}Membre{% endblock %}
{% block body %}
<div class="d-flex justify-content-between align-items-center mb-3">
<h1 class="h3 mb-0">Membre #{{ membre.id }}</h1>
<div>
<a href="{{ path('app_membre_edit', {'id': membre.id}) }}" class="btn btn-secondary me-2">Edit</a>
<a href="{{ path('app_membre_index') }}" class="btn btn-outline-secondary">Back to list</a>
</div>
</div>
<table class="table table-bordered">
<tbody>
<tr>
<th>Id</th>
<td>{{ membre.id }}</td>
</tr>
<tr>
<th>Nom</th>
<td>{{ membre.nom }}</td>
</tr>
<tr>
<th>Password</th>
<td>********</td>
</tr>
<tr>
<th>Droit</th>
<td>{{ membre.droit }}</td>
</tr>
</tbody>
</table>
<div class="mt-3">
{{ include('membre/_delete_form.html.twig') }}
</div>
{% endblock %}