templates/Components/Destination/Detail/Tabs/prices.html.twig line 1

  1. <div id="prices" class="tab-pane fade in{% if(activeTab=='prices') %} active{% endif %}">
  2.     <div class="mobile-only">
  3.         <a class="btn btn-primary" href="{{ path('app_pricetable_pdf', {'id':destination.id}) }}" target="_blank">Dostupnost v PDF</a>
  4.         <a href="{{ path('send_pdf', {'slug':destination.slug}) }}" class="btn-primary btn">Odeslat ceník na e-mail</a>
  5.     </div>
  6.     <div class="desktop-only">
  7.         <a href="{{ path('send_pdf', {'slug':destination.slug}) }}" class="btn-primary btn">Odeslat ceník na e-mail</a>
  8.        {% include 'Components/Destination/Detail/Tabs/priceTable.html.twig' %}
  9.     </div>
  10. </div>