templates/Components/Form/sidebar.html.twig line 1

  1. {% if(contractOrder.destination is not empty) %}
  2.     <div class="sidebar-item" style="margin-bottom: 20px;">
  3.         <h4><i class="fa fa-phone"></i>Váš zájezd</h4>
  4.         <div class="sidebar-body">
  5.             <table class="table">
  6.                 <tr>
  7.                     <th>Destinace</th>
  8.                     <td>{{ contractOrder.destination.name }}</td>
  9.                 </tr>
  10.                 {% if(contractOrder.accommodation) %}
  11.                     <tr>
  12.                         <th>Ubytování</th>
  13.                         <td>{{ contractOrder.accommodation.name }}</td>
  14.                     </tr>
  15.                 {% endif %}
  16.                 {% if(contractOrder.term) %}
  17.                     <tr>
  18.                         <th>Začátek</th>
  19.                         <td>{{ contractOrder.term.start | date('d.m.Y') }}</td>
  20.                     </tr>
  21.                     <tr>
  22.                         <th>Konec</th>
  23.                         <td>{{ contractOrder.term.end | date('d.m.Y') }}</td>
  24.                     </tr>
  25.                 {% endif %}
  26.             </table>
  27.         </div>
  28.     </div>
  29. {% endif %}
  30. <div class="sidebar-item">
  31.     <h4><i class="fa fa-phone"></i>Kontakt</h4>
  32.     <div class="sidebar-body text-center">
  33.         <p>Pokud potřebujete poradit nebo Vám není něco jasné zavolejte nám.</p>
  34.         <h2>475 208 585</h2>
  35.     </div>
  36. </div>