{# conges/accounts.html.twig #} {% extends 'base.html.twig' %} {% block specificjs %} {% endblock %} {% block page %}

Crédits de congés

{% if deleted_agents %} {% else %} {% endif %} Agents supprimés {% if effective_account %} {% else %} {% endif %} Crédits effectifs {% if waiting_credits %} {% else %} {% endif %} Crédits en attente {% if show_hours_to_days %} {% if hours_to_days %} {% else %} {% endif %} Afficher les équivalences en jours {% endif %}

{% for a in accounts %} {% if effective_account %} {% endif %} {% if waiting_credits %} {% endif %} {% endfor %}
Agent Congés / an Crédit congés Crédit reliquat Crédit récupérations Solde débiteur
Initial Utilisé Restant Initial Utilisé Restant Initial Utilisé Restant Initial Utilisé Restant
{{ a.agent }} {{ a.conge_annuel }} {% if hours_to_days %}
{{ a.conge_annuel | hoursToDays(a.id) }} {% endif %}
{{ a.conge_initial }} {% if hours_to_days %}
{{ a.conge_initial | hoursToDays(a.id) }} {% endif %}
{{ a.conge_utilise }} {% if hours_to_days %}
{{ a.conge_utilise | hoursToDays(a.id) }} {% endif %}
{{ a.conge_restant }} {% if hours_to_days %}
{{ a.conge_restant | hoursToDays(a.id) }} {% endif %}
{{ a.reliquat_initial }} {% if hours_to_days %}
{{ a.reliquat_initial | hoursToDays(a.id) }} {% endif %}
{{ a.reliquat_utilise }} {% if hours_to_days %}
{{ a.reliquat_utilise | hoursToDays(a.id) }} {% endif %}
{{ a.reliquat_restant }} {% if hours_to_days %}
{{ a.reliquat_restant | hoursToDays(a.id) }} {% endif %}
{{ a.recup_initial }} {% if hours_to_days %}
{{ a.recup_initial | hoursToDays(a.id) }} {% endif %}
{{ a.recup_utilise }} {% if hours_to_days %}
{{ a.recup_utilise | hoursToDays(a.id) }} {% endif %}
{{ a.recup_restant }} {% if hours_to_days %}
{{ a.recup_restant | hoursToDays(a.id) }} {% endif %}
{{ a.anticipation_initial }} {% if hours_to_days %}
{{ a.anticipation_initial | hoursToDays(a.id) }} {% endif %}
{{ a.anticipation_utilise }} {% if hours_to_days %}
{{ a.anticipation_utilise | hoursToDays(a.id) }} {% endif %}
{{ a.anticipation_restant }} {% if hours_to_days %}
{{ a.anticipation_restant | hoursToDays(a.id) }} {% endif %}
{{ a.agent }} {{ a.conge_annuel }} {% if hours_to_days %}
{{ a.conge_annuel | hoursToDays(a.id) }} {% endif %}
{{ a.conge_initial }} {% if hours_to_days %}
{{ a.conge_initial | hoursToDays(a.id) }} {% endif %}
{{ a.conge_demande }} {% if hours_to_days %}
{{ a.conge_demande | hoursToDays(a.id) }} {% endif %}
{{ a.conge_en_attente }} {% if hours_to_days %}
{{ a.conge_en_attente | hoursToDays(a.id) }} {% endif %}
{{ a.reliquat_initial }} {% if hours_to_days %}
{{ a.reliquat_initial | hoursToDays(a.id) }} {% endif %}
{{ a.reliquat_demande }} {% if hours_to_days %}
{{ a.reliquat_demande | hoursToDays(a.id) }} {% endif %}
{{ a.reliquat_en_attente }} {% if hours_to_days %}
{{ a.reliquat_en_attente | hoursToDays(a.id) }} {% endif %}
{{ a.recup_initial }} {% if hours_to_days %}
{{ a.recup_initial | hoursToDays(a.id) }} {% endif %}
{{ a.recup_demande }} {% if hours_to_days %}
{{ a.recup_demande | hoursToDays(a.id) }} {% endif %}
{{ a.recup_en_attente }} {% if hours_to_days %}
{{ a.recup_en_attente | hoursToDays(a.id) }} {% endif %}
{{ a.anticipation_initial }} {% if hours_to_days %}
{{ a.anticipation_initial | hoursToDays(a.id) }} {% endif %}
{{ a.anticipation_demande }} {% if hours_to_days %}
{{ a.anticipation_demande | hoursToDays(a.id) }} {% endif %}
{{ a.anticipation_en_attente }} {% if hours_to_days %}
{{ a.anticipation_en_attente | hoursToDays(a.id) }} {% endif %}
{% endblock %}