{% extends 'renter/index.html.twig' %} {% block sidebard %} {% endblock %} {% block dashboard_current %} {% endblock %} {% block dashboard_body %}

dans renter/cars.html.twig

Listes des hangars mis en Location par : {{ app.user.name }}

{#

hangartypes Renter/cars.html.twig

#} {#
Listes des hangars Ajouter +
#} {% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('danger') %} {% endfor %}
{# #} {% set count = 0 %} {% for c in Cars %} {% set count = count + 1 %} {# #} {% if c.isRented %} {% else %} {% endif %} {% endfor %}

Nombre de Hangar : {{ count }}

# Modèle CaractéristiquesNamePrix/Jour Dispo action Depart
#{{ c.getCars.id }} {{ c.getCars.carType.name }}{{ c.getCars.renter.name }}
    {{ c.getCars.image }} {% for key, descr in c.getCars.Features %}
  • {{ key }} : {{ descr }}
  • {% endfor %}
{{ c.getCars.Price }} € {% if c.isRented %} Louée {% else %} {% if c.getCars.available %} Dispo {% else %} Non dispo {% endif %} {% endif %} En locationModifier depart: {{ c.getCars.departement }}
{% endblock %} {% block panel_scripts %} {% endblock %}