{% extends 'base.html.twig' %} {% block title %}Aides{% endblock %} {% block body %}

Liste des aides en cours

{% for aide in aides %} {% else %} {% endfor %}
Particulier Nature Montant Date d'expiration Commentaire Détail Actions
{% if aide.particulier !=null %} {{aide.particulier.nom}} {{aide.particulier.prenom}} {% else %} Oups cette aide n'appartient à personne {% endif %} {{ aide.nature }} {{ aide.montant }} euros {% if aide.dateExpiration > date() %} {{ aide.dateExpiration ? aide.dateExpiration|date('d-m-Y') : '' }} {% else %} Date expirée {% endif %} {{ aide.commentaire }}
{% if is_granted("ROLE_MANAGER") %}
{{ include('aide/_delete_form.html.twig') }} {% else %} Aucune action autorisée {% endif %}
Aucune aide enregistrée
{% endblock %}