{% extends 'base.html.twig' %} {% block title %}Mes locations {{ parent() }}{% endblock %} {% block body %}

Mes locations

{% set filters = { 'all': { 'label': 'Toutes les locations' }, 'upcoming': { 'label': 'Locations à venir', 'condition': 'startDate > now' }, 'ongoing': { 'label': 'Locations en cours', 'condition': 'startDate <= now and endDate >= now' }, 'past': { 'label': 'Locations passées', 'condition': 'endDate < now' } } %} {% set now = "now"|date("Y-m-d") %} {% for key, filter in filters %}

{{ filter.label }}

{% set filter_found = false %} {% for rental in rentals %} {% set startDate = rental.startDate|date("Y-m-d") %} {% set endDate = rental.endDate|date("Y-m-d") %} {% if (key == 'upcoming' and startDate > now) or (key == 'ongoing' and startDate <= now and endDate >= now) or (key == 'past' and endDate < now) or (key == 'all') %} {% set filter_found = true %}

Location #{{ rental.id }}

Début : {{ rental.startDate|date('d/m/Y') }}

Fin : {{ rental.endDate|date('d/m/Y') }}

Produit : {{ rental.product.name }}

Consulter Générer une facture
{% endif %} {% endfor %} {% if not filter_found %}

Aucune {{ filter.label|lower }} trouvée.

{% endif %}
{% endfor %}
{# Inclusion de jQuery #} {% endblock %}