HegreLand/templates/employee/show.html.twig

43 lines
1.1 KiB
Twig
Raw Normal View History

2024-11-21 17:55:00 +01:00
{% extends 'base.html.twig' %}
{% block title %}Employee{% endblock %}
{% block body %}
<h1>Employee</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ employee.id }}</td>
</tr>
<tr>
<th>Email</th>
<td>{{ employee.email }}</td>
</tr>
<tr>
<th>FirstName</th>
<td>{{ employee.firstName }}</td>
</tr>
<tr>
<th>LastName</th>
<td>{{ employee.lastName }}</td>
</tr>
<tr>
<th>Password</th>
<td>{{ employee.password }}</td>
</tr>
<tr>
<th>Roles</th>
<td>{{ employee.roles ? employee.roles|json_encode : '' }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_employee_index') }}">back to list</a>
<a href="{{ path('app_employee_edit', {'id': employee.id}) }}">edit</a>
{{ include('employee/_delete_form.html.twig') }}
{% endblock %}