templates/produit/produitunique.html.twig line 1

  1. {% set certifications = '' %}
  2. {% set certificationsId = '' %}
  3. {% set img2 = '' %}
  4. {% set attr_prec = '' %}
  5. {% set attr_cap = '' %}
  6. {% set lang = app.request.attributes.get('_locale') %}
  7. {% for supplier in product.suppliers|split(',') %}
  8.     {% set certificationsId = product.id_suppliers|split(",")[loop.index0] %}
  9.     {% set certifications = certifications ~ '<img class="mx-1" width="20px" height="20px" src="../../../ps/img/su/' ~ certificationsId ~ ((certificationsId == '4') ? '.png' : '.jpg') ~ '" alt="' ~ supplier ~ '" title="' ~ supplier ~ '">' %}
  10. {% endfor %}
  11. {% if product.id_image2 %}
  12.     {% set img2 = '<span class="hover-image">
  13.                         <a class="img-back product_img_link" href="/'~ lang ~'/'~ product.prelink ~'/'~ product.link_rewrite ~'" title="'~ product.name ~'" title="'~ product.name ~'">
  14.                             <img class="replace-2x img-responsive pts-image" src="https://www.sensy.com/'~ product.id_image2 ~'-home_default/'~ product.link_rewrite ~'.jpg" alt="'~ product.legend2 ~'" title="'~ product.legend2 ~'" width="370" height="340">
  15.                         </a>
  16.                     </span>' 
  17.     %}
  18. {% endif %}
  19. {% if product.attr_prec %}
  20.     {% set attr_prec = "<tr>
  21.                             <td>"~ 'precision'|trans({}, 'configurateur')|raw ~"</td>
  22.                             <td>"~ product.attr_prec|replace({',': ', '})|truncate(25) ~"</td>
  23.                         </tr>"
  24.     %}
  25. {% endif %}
  26. {% if product.attr_cap %}
  27.     {% set attr_cap =  "<tr>
  28.                             <td>"~ 'capacite'|trans({}, 'configurateur')|raw ~"</td>
  29.                             <td>"~ product.attr_cap|replace({',': ', '})|truncate(25) ~"</td>
  30.                         </tr>"
  31.     %}
  32. {% endif %}
  33. <div class="owl-wrapper col-xs-cus-12 col-xs-4 col-sm-3 col-md-3 col-lg-3 p-0" data-col-lg="3" data-col-md="3" data-col-sm="3" data-col-xs="4" style="border-top: 1px solid #e9e9e9;">
  34.     <div class="item clearfix">
  35.         <div class="ajax_block_product">
  36.             <div class="product-block position-relative" itemscope="" itemtype="https://schema.org/Product" style="position: static; margin-right: 0px; margin-left: 0px;">
  37.                 <div class="product-container">
  38.                     <div class="Certifications">{{ certifications|raw }}</div>
  39.                     <div class="left-block">
  40.                         <div class="product-image-container image">
  41.                             <a class="img product_img_link" href="/{{ lang }}/{{ product.prelink }}/{{ product.link_rewrite }}" title="{{ product.name }}" itemprop="url">
  42.                                 <img class="replace-2x img-responsive pts-image" src="https://www.sensy.com/{{ product.id_image1 }}-home_default/{{ product.link_rewrite }}.jpg" alt="{{ product.reference }} - {{ product.name }}" title="{{ product.reference }} - {{ product.name }}" itemprop="image">
  43.                             </a>
  44.                         </div>
  45.                         <div class="product-label-wrap"></div>
  46.                         <div class="color-list-container product-colors"></div>
  47.                     </div>
  48.                     <div class="right-block">
  49.                         <div class="product-meta">
  50.                             <h4 class="name" itemprop="sku"><a class="product-name" href="/{{ lang }}/{{ product.prelink }}/{{ product.link_rewrite }}" title="{{ product.name }}" itemprop="url">{{ product.reference }}</a></h4>
  51.                             <div class="product-desc description" itemprop="name">{{ product.name }}</div>
  52.                             <div class="clearfix product-box"></div>
  53.                         </div>
  54.                         <div class="button-container actionblog" style="padding-left: 20%;">
  55.                             <div>
  56.                                 <div class="pts-atchover"><a class="btn" href="/{{ lang }}/{{ product.prelink }}/{{ product.link_rewrite }}" data-id-product="{{ product.id_product }}" title="{{ 'details'|trans({}, 'configurateur')|raw }}"><i class="fas fa-search"></i></a></div>
  57.                                 <div class="pts-atchover"><a class="btn" href="//files.sensy.com/datasheets/{{ product.file_name }}" target="_blank" title="{{ 'datasheet'|trans({}, 'configurateur')|raw }}"><i class="fas fa-download"></i></a></div>
  58.                                 <div class="pts-atchover"><a class="btn add_to_compare" href="/{{ lang }}/{{ product.prelink }}/{{ product.link_rewrite }}" data-id-product="{{ product.id_product }}" title="{{ 'add.compare'|trans({}, 'configurateur')|raw }}"><i class="fas fa-sync-alt"></i></a></div>
  59.                             </div>
  60.                         </div>
  61.                     </div>
  62.                 </div>
  63.                 <div class="SousProduit ShadowBox" style="display: none;">
  64.                     <table class="mx-1">
  65.                         <tbody>
  66.                             {{ attr_prec ~ attr_cap }}
  67.                             <tr>
  68.                                 <td colspan="2" class="TableDescription" itemprop="description">{{ product.description }}</td>
  69.                             </tr>
  70.                         </tbody>
  71.                     </table>
  72.                 </div>
  73.                 <div itemprop="brand" itemscope="" itemtype="https://schema.org/Brand">
  74.                     <meta itemprop="name" content="SENSY">
  75.                 </div>
  76.                 <div itemprop="offers" itemscope="" itemtype="https://schema.org/Offer">
  77.                     <meta itemprop="price" content="">
  78.                     <meta itemprop="priceCurrency" content="EUR">
  79.                     <link itemprop="availability" href="https://schema.org/InStock">
  80.                     <meta itemprop="url" content="/{{ lang }}/{{ product.prelink }}/{{ product.link_rewrite }}" title="{{ product.name }}">
  81.                 </div>
  82.             </div>
  83.         </div>
  84.     </div>
  85. </div>