templates/front/catalog/product/view/infos.html.twig line 1

Open in your IDE?
  1. <div class="product-infos">
  2. {% include 'front/catalog/product/view/assets.html.twig' %}
  3. <div class="infos">
  4. {% if is_granted('ROLE_ADMIN') %}
  5. <div class="admin-tools">
  6. <a href="{{ path('admin_product_edit',{id:product.id}) }}" class="admin-update" target="_blank">modifier le produit</a>
  7. </div>
  8. {% endif %}
  9. {% if product.manufacturer %}
  10. <div class="manufacturer"><a href="{{ path('manufacturer',{id:product.manufacturer.id, url:product.manufacturer.url}) }}">{{ product.manufacturer.name }}</a></div>
  11. {% endif %}
  12. <h1>{{ product.headingTitle }}</h1>
  13. <div class="description">
  14. <p>{{ productDescription.teaser|raw }}</p>
  15. {% if hasWelcomeDiscount %}
  16. <div>
  17. {% include 'front/catalog/product/view/discount-welcome.html.twig' %}
  18. </div>
  19. {% endif %}
  20. {% if productDescription.description %}
  21. <a href="#description" class="bt-scroll">{% trans %}Voir le descriptif{% endtrans %}</a>
  22. {% endif %}
  23. </div>
  24. {% if not customerMgr.canSeePrices() %}
  25. <div class="not-logged">
  26. {% trans %}Pour voir les prix des articles, {% endtrans %}<a href="{{ path('customer_login') }}">{% trans %}il faut être connecté{% endtrans %}</a> {% trans %}(c’est gratuit){% endtrans %}.
  27. </div>
  28. {% endif %}
  29. {% include 'front/catalog/product/view/references.html.twig' %}
  30. {% if not customerMgr.isExpert() %}
  31. <div class="offers">
  32. <div class="free-shipping">
  33. <img src="{{ asset('img/pictos/shipping.svg') }}" alt="{% trans %}Livraison gratuite dès 100 € HT{% endtrans %}">
  34. <div>{% trans %}<strong>LIVRAISON GRATUITE</strong><br>dès 100 € HT{% endtrans %}</div>
  35. </div>
  36. <div class="free-gift">
  37. <img src="{{ asset('img/pictos/gift.svg') }}" alt="{% trans %}1 cadeau offert pour chaque commande internet{% endtrans %}">
  38. <div>{% trans %}<strong>1 CADEAU OFFERT</strong> pour <br>chaque commande internet{% endtrans %}</div>
  39. </div>
  40. </div>
  41. {% if product.hasSoleil() %}
  42. <p>{% trans %}-25% de remise sur les produits <span class="picto soleil"></span> dès 100€ HT de commande de produits <span class="picto soleil"></span>{% endtrans %}</p>
  43. {% endif %}
  44. {% if product.hasNonSoleil() %}
  45. <p>{% trans %}-10% de remise sur les produits <span class="picto non-soleil"></span> dès 100€ HT de commande de produits <span class="picto non-soleil"></span>{% endtrans %}</p>
  46. {% endif %}
  47. {% endif %}
  48. </div>
  49. </div>