src/Modules/VoucherCart/Templates/Voucher/partials/orderSteps.html.twig line 1

  1.   <div class="col-lg-4 col-md-6 order-lg-1 order-md-2 order-2 my-auto">
  2.     <h4 class="my-3 m-md-0 text-center text-md-start">
  3.         <span style="font-weight:300">Podaruj wyjątkowy prezent</span><br />
  4.         Voucher od <em>{{ vc_getAdminUser().admin.companyName }}</em>
  5.     </h4>
  6.   </div>
  7.   <div class="col-lg-4 order-lg-2 order-1 text-center py-3">
  8.     {% set logoUrl = vc_getAdminUserLogoUrl() %}
  9.     {% if logoUrl != '' %}
  10.        <img src="{{ logoUrl|imagine_filter('admin_logo_500x280i') }}" style="max-width:200px; max-height:100px;" />
  11.     {% endif %}
  12.   </div>
  13. </div>
  14. <ul id="progressbar" class="row g-0 w-100 justify-content-center">
  15.     <li class="col text-uppercase active">
  16.         <b>ETAP 1</b><br />
  17.         <small>wybór vouchera</small>
  18.     </li>
  19.     <li class="col text-uppercase {{ step >= 2 ? 'active' : '' }}">
  20.         <b>ETAP 2</b><br />
  21.         <small>płatność</small>
  22.     </li>
  23.     <li class="col text-uppercase {{ step == 3 ? 'active' : '' }}">
  24.         <b>ETAP 3</b><br />
  25.         <small>odbiór/wysłanie vouchera</small>
  26.     </li>
  27. </ul>