hegresphere/templates/user_app/show.html.twig
2024-11-21 17:04:56 +01:00

55 lines
1.4 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}UserApp{% endblock %}
{% block body %}
<h1>UserApp</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ user_app.id }}</td>
</tr>
<tr>
<th>Nickname</th>
<td>{{ user_app.nickname }}</td>
</tr>
<tr>
<th>Roles</th>
<td>{{ user_app.roles ? user_app.roles|json_encode : '' }}</td>
</tr>
<tr>
<th>Password</th>
<td>{{ user_app.password }}</td>
</tr>
<tr>
<th>FirstName</th>
<td>{{ user_app.firstName }}</td>
</tr>
<tr>
<th>LastName</th>
<td>{{ user_app.lastName }}</td>
</tr>
<tr>
<th>Tel</th>
<td>{{ user_app.tel }}</td>
</tr>
<tr>
<th>Address</th>
<td>{{ user_app.address }}</td>
</tr>
<tr>
<th>Mail</th>
<td>{{ user_app.mail }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_user_app_index') }}">back to list</a>
<a href="{{ path('app_user_app_edit', {'id': user_app.id}) }}">edit</a>
{{ include('user_app/_delete_form.html.twig') }}
{% endblock %}