{% extends 'base.html.twig' %} {% block title %} {% if app.request.attributes.get('availability') == "rental" %} Nos locations {% else %} Catalogue des produits {% endif %} - {{ parent() }} {% endblock %} {% block body %} {% if app.request.attributes.get('availability') == "rental" %}

Nos locations disponible

{% else %}

Catalogue des Produits

{% endif %}
{% for product in products %}
{% if product.image|length > 0 %}
{% for image in product.image %}
{{ product.name }}
{% endfor %}
{% else %}
Aucune Image
{% endif %}

{{ product.name }}

{{ product.description|slice(0, 100) ~ (product.description|length > 100 ? '...' : '') }}

Date de mise en ligne: {{ product.createdAt ? product.createdAt|date('d/m/Y') : 'N/A' }}

{% if app.request.attributes.get('availability') == "rental" %}

Quantité disponible: {{ product.rentalStock }}

Prix : {{ product.rentalPrice }} EUR

{% else %}

Quantité disponible: {{ product.stock }}

Prix : {{ product.price }} EUR

{% endif %}
{% else %}
Aucun produit trouvé
{% endfor %}
{% endblock %}