{% extends 'base.html.twig' %} {% block title %}Velo {% endblock %} {% block body %} {% for message in app.flashes('message') %} {% endfor %}

Détail du vélo n° de série : {{velo.identifiant}}

Identifiant {{ velo.identifiant }}
Bicycode {{ velo.bicycode }}
Marque {{ velo.marque }}
Couleur {{ velo.couleur }}
Categorie {{ velo.categorie }}
Poid {{ velo.poid }}
Taille {{ velo.taille }}
Interventions effectuées {% for intervention in velo.interventions %}
Réception le {{intervention.dateReception|date('d-m-Y')}}

{% endfor %}
Provenance {% if velo.particulier !=null %} {{velo.particulier.nom}} {{velo.particulier.prenom}} {% else %} Pas de provenance connu {% endif %}
{% if is_granted("ROLE_MANAGER") %}
{{ include('velo/_delete_form.html.twig') }} Modifier
{% endif %}
{% endblock %}