{% extends ('base.html.twig') %} {% block title %} {% trans %}COSAP - Heures de travail{% endtrans %} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}
{% if action == "edit" %}
{% trans %}Modifier Heure de travail{% endtrans %}

{{ include('HoraireAdministratif/heureTravail/action.html.twig') }}
{% endif %}
{% if not show_details %} {% else %} {{ selected_seance.typeValue }} : {{ selected_seance.label }}
{% if not heures|length %} {% else %}
{% if app.user and is_granted('ROLE_MODIFIER_HEURE_TRAVAIL') %} {% endif %} {% for heure in heures %} {% if app.user and is_granted('ROLE_MODIFIER_HEURE_TRAVAIL') %} {% endif %} {% endfor %}
{% trans %}Jour{% endtrans %} {% trans %}Statut{% endtrans %}
{% trans %}Horaires de travail{% endtrans %}
{% trans %}Horaires de pause{% endtrans %}
{% trans %}Heure demi journée{% endtrans %}
{% trans %}Journée par quinzaine{% endtrans %}
{% trans %}Actions{% endtrans %}
{{ heure.name }} {% if heure.statusJournee is not null %} {{ heure.statutValue }} {% endif %} {% if heure.heureDebutTravail is not null and heure.heureFinTravail is not null %} {{ heure.heureDebutTravail|date('H:i') }} - {{ heure.heureFinTravail|date('H:i') }} {% endif %} {% if heure.heureDebutPause is not null and heure.heureFinPause is not null %} {{ heure.heureDebutPause|date('H:i') }} - {{ heure.heureFinPause|date('H:i') }} {% endif %} {% if heure.halfJourney is not null %} {{ heure.halfJourney|date('H:i') }} {% endif %} {% if heure.journeeParQuinzaine == 1 %} {% trans %}Oui{% endtrans %} {% elseif heure.journeeParQuinzaine == 0 %} {% trans %}Non{% endtrans %} {% endif %}
{% endif %} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% include('HoraireAdministratif/heureTravail/ajax/checkHeure.html.twig') %} {% include('HoraireAdministratif/heureTravail/ajax/changeHeure.html.twig') %} {% include('HoraireAdministratif/heureTravail/ajax/checkInputSave.html.twig') %} {% endblock %}