src/Modules/OnlineService/Modules/OnlineService/Templates/OnlineService/details.html.twig line 1

  1. {% extends 'Modules/OnlineService/Templates/layouts/main.html.twig' %}
  2. {% set service = data.entity %}
  3. {% block content %}
  4.     <div class="row">
  5.         <div class="col-md-5 mb-3 mb-md-0">
  6.             <p>
  7.                 <img src="{{ data.image_url|imagine_filter('online_service_400x200') }}" class="img-fluid offer-img" />
  8.             </p>
  9.             {% if service.priceListItems|length %}
  10.                 <div class="mb-2">
  11.                     {% for item in service.priceListItems %}
  12.                         <span class="badge bg-secondary">{{ item.name }}</span>
  13.                     {% endfor %}
  14.                 </div>
  15.             {% endif %}
  16.         </div>
  17.         <div class="col-md-7">
  18.             <h5>{{ service.name }}</h5>
  19.             <p>{{ service.description|nl2br }}</p>
  20.             <div class="mt-3">
  21.                 <p class="mb-1 d-flex justify-content-between"><strong>Cena:</strong> {{ data.items_price|formatPrice }}</p>
  22.                 {% if data.items_price != data.price %}
  23.                     <p class="mb-1 d-flex justify-content-between"><strong>Rabat:</strong> {{ service.discount }}%</p>
  24.                     <p class="mb-0 d-flex justify-content-between"><strong>Cena po rabacie:</strong> {{ data.price|formatPrice }}</p>
  25.                 {% endif %}
  26.                 <p class="mb-0 d-flex justify-content-between"><strong>Cena brutto (+{{ data.vat }}%):</strong> {{ data.gross_price|formatPrice }}</p>
  27.             </div>
  28.         </div>
  29.     </div>
  30.     <div class="text-end">
  31.         <a href="{{ returnUrl }}" class="btn btn-outline-secondary">Anuluj</a>
  32.         <a href="{{ os_path('online_service_order_form', { 'serviceId': service.id, 'returnUrl': app.request.requestUri }) }}" class="btn btn-primary">Złóż zamówienie</a>
  33.     </div>
  34. {% endblock %}