Nombre des enregistrements {{ conges.getTotalItemCount }}
{% if app.user and is_granted('ROLE_AJOUTER_CATEGORY_CONGE') %} nouvel enregistrement {% endif %}
{% if not conges|length %} {% else %}
{% if app.user and (is_granted('ROLE_ACTIVER_DESACTIVER_CATEGORY_CONGE') or is_granted('ROLE_MODIFIER_CATEGORY_CONGE') or is_granted('ROLE_SUPPRIMER_CATEGORY_CONGE')) %} {% endif %} {% for conge in conges %} {% if app.user and (is_granted('ROLE_ACTIVER_DESACTIVER_CATEGORY_CONGE') or is_granted('ROLE_MODIFIER_CATEGORY_CONGE') or is_granted('ROLE_SUPPRIMER_CATEGORY_CONGE')) %} {% endif %} {% endfor %}
Nom Etat de solde Jours fériés Week-end StatutActions
{{ conge.label }} {% if conge.etatSolde is not null %} {{ conge.valueEtatSolde }} {% endif %} {% if conge.isComptFerier == 1 %} {% trans %}Oui{% endtrans %} {% elseif conge.isComptFerier == 0 %} {% trans %}Non{% endtrans %} {% endif %} {% if conge.isComptWeekend == 1 %} {% trans %}Oui{% endtrans %} {% elseif conge.isComptWeekend == 0 %} {% trans %}Non{% endtrans %} {% endif %} {% if conge.statut == 1 %} {% trans %}Activé{% endtrans %} {% elseif conge.statut == 0 %} {% trans %}Désactivé{% endtrans %} {% endif %}
{% endif %}