{{ form_start(form, {'attr' : {'id' : 'articleForm', 'class' : 'spinner_form search-form'}}) }}
{{ form_widget(form.code) }}
{{ form_end(form) }}
{% if article %}
{% set available = "NON" %}
{% if article.availableLocation %}
{% set available = "OUI" %}
{% endif %}
{% set reserved = "NON" %}
{% if article.isReserved %}
{% set reserved = "OUI" %}
{% endif %}
{% set dateEndLocationPlanned = "" %}
{% if article.endLocationAt %}
{% set dateEndLocationPlanned = article.endLocationAt|date('d/m/Y') %}
{% endif %}
ID : {{ article.id }}
Nom : {{ article.name }}
Disponible :{{ available }}
Reservé :{{ reserved }}
Date de retour prévu :{{ dateEndLocationPlanned }}
{% endif %}