templates/home/detail.html.twig line 1
{% extends 'base.html.twig' %}{% block title %}Details - {{ article.libelle }} !{% endblock %}{% block stylesheets %}.mobile-categ{display: none;}@media (max-width: 480px) {.same-categ {display: none;}.pub-details {display: none;}.mobile-categ{display: block;}.image-mobile{height: 100%;}}{% endblock %}{% block body %}{% for a in articles %}{% if a.id != article.id %}{% if a.ispromo == true %}PROMO{% endif %}{% if a.IsSolde == true %}Jusqu'à -{{ a.soldePourcentage}}%{% endif %}{{ a.libelle|length > 50 ? a.libelle|slice(0, 50) ~ '...' : a.libelle }}{% if a.ispromo==true %}{% if a.isNoprice == true %}Prix à la demande{% else %}{{ a.prixpromo }} FCFA{% endif %}{% elseif a.IsSolde == true %}{% if a.isNoprice == true %}Prix à la demande{% else %}{{ a.prix }} FCFA{% endif %}{% else %}{% if a.prix > 0%}{{ a.prix }} FCFA{% else %}Prix à la demande{% endif %}{% endif %}{% endif %}{% endfor %}{% for article in articles %}{% if article.ispromo == true %}PROMO{% endif %}{% if article.IsSolde == true %}Jusqu'à -{{ article.soldePourcentage}}%{% endif %}{{ article.libelle|length > 50 ? article.libelle|slice(0, 50) ~ '...' : article.libelle }}{% if article.ispromo==true %}{% if article.isNoprice == true %}Prix à la demande{% else %}{{ article.prixpromo|number_format(0,'.',' ') }} FCFA{{ article.prix|number_format(0,'.',' ') }} FCFA{% endif %}{% elseif article.IsSolde == true %}{% if article.isNoprice == true %}Prix à la demande{% else %}{{ article.prix|number_format(0,'.',' ') }} FCFA{% endif %}{% else %}{% if article.prix > 0%}{{ article.prix|number_format(0,'.',' ') }} FCFA{% else %}Prix à la demande{% endif %}{% endif %}{% endfor %}{% endblock %}
 }})
 }})