{% extends '@App/app.html.twig' %} {% block title %}Jours fériés{% endblock %} {% block content %}

Jours fériés

{% include '@Leave/leave/settings/_settings_nav.html.twig' with {active: 'holidays'} %}
Les jours fériés peuvent être différents selon les établissements. Configurez un calendrier par société ou établissement.
{{ year }} Société principale
Ajouter un jour
Total{{ holidays|length }}Jours fériés {{ year }}
Payés{{ paid_count }}Non travaillés & payés
Prochain{{ next_holiday ? next_holiday.date|date('d M') : '—' }}{{ next_holiday ? next_holiday.nom : 'Aucun jour à venir' }}
CalendrierSociétéCalendrier actif

Calendrier des jours fériés — {{ year }}

{{ holidays|length }} jours
{% for holiday in holidays %} {% else %} {% endfor %}
DateNomTypeTravailléPayéActions
{{ holiday.date|date('j') }}{{ holiday.date|date('M') }} {{ holiday.date|date('d/m/Y') }} {{ holiday.nom }}
{{ holiday.calendar ? holiday.calendar.nom : 'Calendrier société' }}
{{ holiday.type == 'public_holiday' ? 'Jour férié' : 'Fermeture' }} {{ holiday.worked ? 'Oui' : 'Non' }} {{ holiday.paid ? 'Oui' : 'Non' }}
Aucun jour férié.
{% endblock %}