HegreLand/templates/affectation/index.html.twig
2024-12-05 16:44:09 +01:00

22 lines
398 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Affectation{% endblock %}
{% block body %}
<div class="wrapper">
<h1>Affectation des utilisateurs.</h1>
{% for employee in employees %}
<tr>
<td>{{ employee.id }}</td>
</tr>
{% else %}
<tr>
<td colspan="7">no records found</td>
</tr>
</div>
{% endblock %}