{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Post-it{% endblock %} {% block body %}

Post-it

Ajouter un post-it
{% if todosNonFait|length > 0 %}

Post-it en cours

{% for todo in todosNonFait %} {% endfor %}
Todo Début Echéance  
{{ todo.contenu }} {{ todo.debut |date('d/m/Y') }} {{ todo.fin |date('d/m/Y') }} Fait Editer {% if is_granted('ROLE_ADMIN') %}{% endif %}
{% endif %}

Post-it terminés

{% for todo in todosFait %} {% endfor %}
Todo Début Echéance
{{ todo.contenu }} {{ todo.debut |date('d/m/Y') }} {{ todo.fin |date('d/m/Y') }} Editer {% if is_granted('ROLE_ADMIN') %}{% endif %}
{% endblock %}