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

31 lines
695 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}Membre{% endblock %}
{% block body %}
<h1>Membre</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ membre.id }}</td>
</tr>
<tr>
<th>Nom</th>
<td>{{ membre.nom }}</td>
</tr>
<tr>
<th>Password</th>
<td>{{ membre.password }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_o_index') }}">back to list</a>
<a href="{{ path('app_o_edit', {'id': membre.id}) }}">edit</a>
{{ include('o/_delete_form.html.twig') }}
{% endblock %}