{% extends "base.html.twig" %} {% block stylesheets %} {% endblock %} {% block body %} {% for client in clients %} {% endfor %}
{{ form_start(form) }} {{ form_row(form.date) }}
{{ form_row(form.description) }}
Equipements :
{% if intervention is defined and intervention.reparation is not null %} {% set lockinfo = intervention.reparation.getLockInfo() %} {% else %} {% set lockinfo = "" %} {% endif %}


Problèmes
{% if intervention is defined and intervention.reparation != null %} {% for pb in intervention.reparation.getProblemes() %} {% include "reparations/templates/problemeLine.html.twig" with {value : pb.getDescription()} %} {% endfor %} {% endif %}

{% set textareaValue = "" %} {% if intervention is defined and intervention.reparation != null %} {% set textareaValue = intervention.reparation.getInfosSup | trim %} {% endif %}
{{ form_row(form.distance) }} {{ form_row(form.heure) }}
{{ form_row(form.images) }} {% if intervention is defined %}
{% for item in intervention.getImages() %} {% endfor %}
{% endif %}
Annuler
{{ form_end(form) }}
{% endblock %}