templates/Components/Form/term.html.twig line 1
<div class="col-md-12 col-sm-12"><div class="cruise-list-view"><div class="col-md-4 col-sm-6 clear-padding"><div class="text-center" style="margin-top: 10px"><strong>Čislo zájezdu</strong><br/>{{ term.number }}<br/><br/><strong>Počet nocí / dní</strong><br/>{{ term.numberOfDays }}<br/><br/><strong>Den odjezdu</strong><br/>{{ term.departureDay }}<br/></div></div><div class="col-md-8 col-sm-8"><h4>{{ term.start|date('d. m. Y') }} - {{ term.end|date('d. m. Y') }}</h4><br />{% if(term.destination.generatePriceTable) %}<a style="background-color: transparent;color: #d2494c;text-decoration: underline" href="{{ path('app_pricetable_pdf', {'id':term.destination.id}) }}" target="_blank">Zobrazit aktualní dostupnost</a>{% endif %}{% if(term.termPrices|length > 0) %}<table class="table">{% if(term.priceType=='term') %}<tr><th>Typ ubytování</th><th>Cena za zájezd</th><th></th></tr>{% endif %}{% for termPrice in contractOrderService.getTermPricesForTerm(term) %}{% if(contractOrderService.canOrderTermPrice(termPrice)) %}<tr><td style="padding:5px;">{{ termPrice.accommodation.name }}</td><td style="padding:5px;">{{ termPrice.price|format_currency('CZK') }}</td>{% if(termPrice.term.priceType=='person') and loop.first %}{% if(termPrice.term.destination.id==4) %}<td rowspan="{{ term.termPrices|length }}" style="vertical-align: center; padding:5px;"style="width: 100px" class="text-center"><ahref="{{ path('form_select_term_accommodation', {'termId': term.id , 'id':42}) }}">Vybrat standard pokoj</a><br /><br />{% if(termPrice.term.canOrderAccommodation(43)) %}<a href="{{ path('form_select_term_accommodation', {'termId': term.id , 'id':43}) }}">Vybrat De luxe pokoj</a>{% endif %}</td>{% else %}<td rowspan="{{ term.termPrices|length }}" style="vertical-align: center; padding:5px;"style="width: 100px" class="text-center"><ahref="{{ path('form_select_term', {'id':term.id}) }}">Vybrat</a></td>{% endif %}{% endif %}{% if(termPrice.term.priceType=='term') %}<td style="padding:5px;" style="width: 100px" class="text-center"><ahref="{{ path('form_select_term_price', {'id':termPrice.id}) }}">Vybrat</a></td>{% endif %}</tr>{% endif %}{% endfor %}</table>{% else %}<table class="table"><tr><th>Typ ubytování</th><th></th></tr>{% for accommodation in term.destination.accommodations %}{% if(term.number=='2702' or term.number=='2902' ) %} {# Benatky #}{% if(accommodation.id!=26) %}<tr><td style="padding:5px;">{{ accommodation.name }}</td><td style="padding:5px;" style="width: 100px" class="text-center"><ahref="{{ path('form_select_term_accommodation', {'termId': term.id , 'id':accommodation.id}) }}">Vybrat</a></td></tr>{% endif %}{% else %}<tr><td style="padding:5px;">{{ accommodation.name }}</td><td style="padding:5px;" style="width: 100px" class="text-center"><ahref="{{ path('form_select_term_accommodation', {'termId': term.id , 'id':accommodation.id}) }}">Vybrat</a></td></tr>{% endif %}{% endfor %}</table>{% endif %}</div></div><div class="clearfix-sm"></div></div>