{% extends 'base.html.twig' %} {% block title %} {{ categorie.metaTitle}} {% endblock %} {% block description %} {{ categorie.metaDesc}} {% endblock %} {% block body %} {% include "front/inc/breadcrumb.html.twig" with { 'content_title': categorie.nomCategorie, 'current_page' : categorie.nomCategorie, 'image' : categorie.imageCategorie } %}

{{ categorie.textCategorie|raw }}

{% if produits|length > 0 %} {% for key,item in produits %} {% set discountPercentage = 0 %} {% if item.typeProduit == 1 %} {% set formulesProduits = item.prixProduits[0].formulesProduits %} {% set lowestPrice = item.prixProduits[0].prixParPersonne %} {% set total = 0 %} {% for it in formulesProduits %} {% set total = total + it.prixProduitParPersonne %} {% endfor %} {% set discountPercentage = ((total - lowestPrice) / total ) * 100 %} {% endif %}
{% if discountPercentage > 0 %} -{{discountPercentage|number_format(0, '.', '')}}% {% endif %} {{item.nomProduits}} {% if item.reserveAuFemme is same as(true) %}
{{ 'message.pourlesfemme'|trans }}
{% endif %}

{{ item.nomProduits }}

{% set combinedDuration = '' %} {% set type = false %} {% for horaire in item.prixProduits %} {% set type = horaire.duree.type %} {% set combinedDuration = combinedDuration ~ horaire.duree.intitule ~ '/' %} {% endfor %} {% if type is same as(false) %}
{% set combinedDuration = combinedDuration|trim('/') %} {{ combinedDuration }}
{% endif %}

{{ item.introProduits|raw }}

{% if type is same as(false) %} {% if discountPercentage %} {{ total }}DH {% endif %} {{ (item.prixProduits|length > 1) ? 'index.apartir'|trans : '' }} {% set lowestPrice = item.prixProduits[0].prixParPersonne %} {% for horaire in item.prixProduits %} {% if horaire.prixParPersonne < lowestPrice %} {% set lowestPrice = horaire.prixParPersonne %} {% endif %} {% endfor %} {{ lowestPrice|number_format(0, '.', ' ') }}DH /Pers {% endif %}
{{ 'index.découvrir'|trans }} {% if item.prixProduits|length <= 1 %} {{ 'index.reserver'|trans }} {% endif %}
{% endfor %} {% endif %}
{% endblock %}