{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Prestation{% endblock %} {% block body %} {% if is_granted('ROLE_PRESTA_ADMIN') %}

Prestations

Ajouter une prestation
{% endif %}

Prestations {{ currentYear }}

{# Adapt aoColumns in prestation.js if the number of columns changes #} {% if is_granted('ROLE_PRESTA_ADMIN') %} {% endif %} {% for prestation in prestations %} {% if is_granted('ROLE_PRESTA_ADMIN') %} {% endif %} {% endfor %}
Intitule StatutEtat
{{ prestation.intitule }} {% set class='label-default' %} {% if prestation.isTerminee %} {% set class='label-success' %} {% elseif prestation.isEnCours %} {% set class = 'label-warning' %} {% endif %} {{ prestation.statutReadable }} {% if not prestation.isAnnulee %} {% if prestation.isFacturee %} {% if prestation.isPayee %} Payée {% else %} Non payée {% endif %} {% elseif prestation.isAcceptee %} Acceptée {% elseif prestation.isDevisee %} Devisée {% else %} Non Devisée {% endif %} {% endif %}
{% endblock %}