templates/marketplaceProduct.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block title %}{{ 'service.marketplace'|trans }}{% endblock %}
  3. {% block page_contents %}
  4. <div class="marketplaceWrapper">
  5.     {% set displayPrice = null %}
  6.     {% set displayPriceVAT = null %}
  7.     {% for price in productPriceList %}
  8.         {% if price.productId == product.productId %}
  9.             {#    we get default price level  #}
  10.             {% if price.priceLevelId == 1 %}
  11.                 {% set displayPrice = price.nettoValue|round(2, 'ceil') %}
  12.                 {#    {% set displayPrice = price.bruttoValue|round(2, 'ceil') %}#}
  13.             {% endif %}
  14.         {% endif %}
  15.     {% endfor %}
  16.     <div class="departmentPath">
  17.         <a href="{{ app.request.headers.get('referer') }}" class="pathLink">{{ 'system.back'|trans }}</a>
  18.     </div>
  19.     <div class="marketplaceProductWrapper">
  20.         <div><h1>{{ product.productName }}</h1></div>
  21.         <div class="productDetailWrapper">
  22.             <div class="productDetailDetail">
  23.                 <div class="productDetailPrice">{{ displayPrice }} CZK</div>
  24.                 <div class="productDetailDescription">
  25.                     {% set productDescription = product.productDescription %}
  26.                     {{ productDescription|striptags }}
  27.                 </div>
  28.                 <div class="productDetailMenu">
  29.                     <a href="{{ path('root') }}marketplace/product/{{ product.productId }}?redirect_to_eshop={{ product.productLink }}" class="butt_big" target="_blank">{{ 'eshop.enter'|trans }}</a>
  30.                 </div>
  31.             </div>
  32.             <div class="productImage">
  33.                 {% if product.image1 is defined %}
  34.                     <img src="{{ product.image1 }}" class="marketplaceProductDetailImage" alt="Product Image" border="0">
  35.                 {% endif %}
  36.             </div>
  37.         </div>
  38.     </div>
  39.     <br>
  40. </div>
  41. {% endblock %}