{% extends 'base.html.twig' %} {% block title %}Accueil {% endblock %} {% block stylesheets %} {{ parent() }} {# #} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %} {% for message in app.flashes('success') %}
{{ message }}
{% endfor %}
{# {{ include('partials/modal.html.twig') }} #} {# {{ include('partials/modal_add_task.html.twig') }} #}

Mes tâches récentes

{% for key, taskList in recentTasksList %} {% if taskList is not null and taskList is not empty %}

{{ key }}

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

{{ tache.description }}

{% for userAttr in tache.usersAttr %}
{{ userAttr }}
{% endfor %}
{% endfor %} {% endif %} {% endfor %} {% for tache in recentTasks %} {% endfor %} {% endblock %}