{% extends 'base.html.twig' %} {% block title %}displayClaims{% endblock %} {% block body %}
{% include '/mission/top_menu.html.twig' %} {% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('warning') %}
{{ message }}
{% endfor %}
{% include '/mission/details/top_menu.html.twig' %}
{% for task in mission.task %} {% if (task.user[0].id == me.id or me.getRoles()[0] == "ROLE_SYMA" or me.getRoles()[0] == "ROLE_SUPERADMIN") and task.statutType == "WAITING" %} {% endif %} {% endfor %}
Tâches Assigné à Date Limite Statut
{{ task.action }}
{{ task.user[0].username }}
{{ task.endAt|date("d-m-Y") }} {{ task.endAt|date("H:i") }}
{{ task.statut }}

Souhaitez-vous validé la tâche ?

{% endblock %} {% block javascripts %} {% endblock %}