{% extends 'base.html.twig' %} {% block title %}Les tâches{% endblock %} {% block body %} {% include "partials/_filter.html.twig" with { form: form } only %} {% if pagination.items is empty %}

Aucun résultat trouvé

{% endif %}
{% for tache in pagination.items %}
{% if tache.client %} {{ tache.client.name}} {% else %} {{ tache.title}} {% endif %}

{{ tache.description }}

{% for userAttr in tache.usersAttr %}
{{ userAttr }}
{% endfor %}
{% endfor %} {% for tache in pagination.items %} {% endfor %}
Réalisée
En cours
Non-fait
{% endblock %}