McDoPlus/templates/user_admin/show.html.twig
clemcle81500 6eb297c0f1 corrections fautes
corrections fautes
2023-12-05 13:40:54 +01:00

54 lines
1.5 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}User{% endblock %}
{% block body %}
<div class="center">
<h1>User</h1>
<article>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ user.id }}</td>
</tr>
<tr>
<th>Email</th>
<td>{{ user.email }}</td>
</tr>
<tr>
<th>Roles</th>
<td>{{ user.roles ? user.roles|json_encode : '' }}</td>
</tr>
<tr>
<th>Mot de passe</th>
<td>{{ user.password }}</td>
</tr>
<tr>
<th>Nom</th>
<td>{{ user.name }}</td>
</tr>
<tr>
<th>Prénom</th>
<td>{{ user.fullname }}</td>
</tr>
<tr>
<th>Adresse</th>
<td>{{ user.address }}</td>
</tr>
<tr>
<th>Id_resto</th>
<td>{{ user.idResto }}</td>
</tr>
</tbody>
</table>
<p><a href="{{ path('app_user_admin_edit', {'id': user.id}) }}">edit</a></p>
{{ include('user_admin/_delete_form.html.twig') }}
<a href="{{ path('app_user_admin_index') }}">back to list</a>
</article>
</div>
{% endblock %}