{% extends 'base.html.twig' %} {% block title %}Velos{% endblock %} {% block body %}

Liste des vélos

{% for velo in velos %} {% else %} {% endfor %}
Identifiant Bicycode Marque Couleur Catégorie Poid Taille Détail Actions
{{ velo.identifiant }} {{ velo.bicycode }} {{ velo.marque }} {{ velo.couleur }} {{ velo.categorie }} {{ velo.poid }} {{ velo.taille }}
{% if is_granted("ROLE_MANAGER") %} {{ include('velo/_delete_form.html.twig') }} {% else %} Aucune action autorisée {% endif %}
Aucun vélo enregistré
Export CSV {% set totalpage = (total / limit )|round(0, 'ceil') %} {% if totalpage != 0 %}
{% endif %}
{% endblock %}