{% extends 'base.html.twig' %} {% block title %}Liste des trajetZone{% endblock %} {% block header %} {{ parent() }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Indemnités de trajet






{{ form_start(form) }} {{ form_end(form) }} {% for trajetZone in trajetZones %} {% if trajetZone.dateDelete is null %} {% endif %} {% endfor %}
Code Libelle du km au km Montant BGC Montant MGC Montant SPGC Montant SPM Exonere Exoneration
{{ trajetZone.code }} {{ trajetZone.libelle }} {{ trajetZone.kmDebut }} {{ trajetZone.kmFin }} {{ trajetZone.montantBGC }} {{ trajetZone.montantMGC }} {{ trajetZone.montantSPGC }} {{ trajetZone.montantSPM }} {{ trajetZone.exonere ? 'Oui' : 'Non' }} {{ trajetZone.exoneration }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}