Fehler #1477
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3466 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
ee98d2faa3
commit
96ccad563d
1 changed files with 41 additions and 34 deletions
|
|
@ -218,6 +218,8 @@
|
|||
|
||||
{% if travel_program.travelDates is not empty %}
|
||||
{% set has_three_bed_room = (travel_program.travelDates|first).prices[5] is defined %}
|
||||
{% set has_double_bed_room = (travel_program.travelDates|first).prices[3] is defined %}
|
||||
{% set has_singel_bed_room = (travel_program.travelDates|first).prices[1] is defined %}
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
|
|
@ -226,8 +228,8 @@
|
|||
<th>Beginn</th>
|
||||
<th>Ende</th>
|
||||
{% if has_three_bed_room %}<th>Preis p.P im Dreibettzimmer</th>{% endif %}
|
||||
<th>Preis p.P im Doppelzimmer</th>
|
||||
<th>Preis p.P im Einzelzimmer</th>
|
||||
{% if has_double_bed_room %}<th>Preis p.P im Doppelzimmer</th>{% endif %}
|
||||
{% if has_singel_bed_room %}<th>Preis p.P im Einzelzimmer</th>{% endif %}
|
||||
<th>Abflugorte / Zuschläge</th>
|
||||
<th>Status</th>
|
||||
<th>Buchungsformular</th>
|
||||
|
|
@ -269,6 +271,7 @@
|
|||
{% endif %}
|
||||
</td>
|
||||
{% endif %}
|
||||
{% if has_double_bed_room %}
|
||||
<td data-title="Preis p.P im Doppelzimmer">
|
||||
|
||||
{% if travel_date.prices[3].available == "1" %}
|
||||
|
|
@ -289,6 +292,9 @@
|
|||
nicht verfügbar
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endif %}
|
||||
|
||||
{% if has_singel_bed_room %}
|
||||
<td data-title="Preis p.P im Einzelzimmer">
|
||||
{% if travel_date.prices[1].available == "1" %}
|
||||
{% if travel_date.prices[1].effectiveDiscountPrice %}
|
||||
|
|
@ -308,6 +314,7 @@
|
|||
nicht verfügbar
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endif %}
|
||||
<td data-title="Abflugorte / Zuschläge">
|
||||
<a href="#" class="color-brand" data-toggle="modal" data-target="#st-departures-modal-{{ loop.index0 }}">
|
||||
Flughäfen
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue