templates/home/search.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Recherche Article {% endblock %}
  3. {% block body %}
  4. Accueil
  5. {% if categorie is defined and categorie is not null %}
  6. {{ categorie.libelle }}
  7. {% else %}
  8. Recherche
  9. {% endif %}
  • {% if categorie is defined and categorie is not null %}
  • Catégorie: {{ categorie.libelle }}

  • {% else %}
  • Résultats de la recherche

  • {% endif %}
  • {% 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 %}
  • Publié le {{ article.pubDate| date('d/m/Y h:i') }}

  • {% endfor %}
  • {{ knp_pagination_render(articles, 'paginator.html.twig') }}
  • {% if pubImages["Z-B-IMG1-PA"] is defined %}
  • {% else %}
  • {% endif %}
  • {% if pubImages["Z-B-IMG2-PA"] is defined %}
  • {% else %}
  • {% endif %}
  • {% if pubImages["Z-B-IMG3-PA"] is defined %}
  • {% else %}
  • {% endif %}
  • {% endblock %}