git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3358 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
fd01254e8f
commit
45977fd4de
15 changed files with 86 additions and 52 deletions
|
|
@ -31,11 +31,13 @@
|
|||
<!-- Wrapper for Slides -->
|
||||
<div class="carousel-inner">
|
||||
{% for lodging_image in fewo_lodging.images %}
|
||||
{# @var image \AppBundle\Entity\FewoLodgingImage #}
|
||||
{# @var lodging_image \AppBundle\Entity\FewoLodgingImage #}
|
||||
<div class="item{% if loop.first %} active{% endif %}">
|
||||
<!-- Set the first background image using inline CSS below. -->
|
||||
{# TODO #}
|
||||
<div class="fill" style="background-image:url({{ asset('uploads/images/' ~ lodging_image.file) }});"></div>
|
||||
<div class="fill" style="background-image:url({{ asset('uploads/images/' ~ lodging_image.file) }});">
|
||||
<span class="image-title">{{ lodging_image.fileName }}</span>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
@ -88,7 +90,6 @@
|
|||
#}
|
||||
|
||||
<div role="tabpanel" class="tab-pane active" id="travel-description-content-tab">
|
||||
{#TODO alles wirklich hier? wo bilder?#}
|
||||
|
||||
<h3>Allgemeines</h3>
|
||||
|
||||
|
|
@ -171,8 +172,9 @@
|
|||
<th>Name</th>
|
||||
<th>Beginn</th>
|
||||
<th>Ende</th>
|
||||
<th>Preis p.P. pro Nacht</th>
|
||||
<th>Pauschalpreis</th>
|
||||
<th>Mindestbelegung</th>
|
||||
<th>Preis pro Nacht</th>
|
||||
<th>Service-Gebühr</th>
|
||||
<th>Kaution</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -190,10 +192,13 @@
|
|||
<td data-title="Ende">
|
||||
{{ price.season.toDate|date }}
|
||||
</td>
|
||||
<td data-title="Mindestbelegung">
|
||||
{{ price.season.minimumStay }} {{ price.season.minimumStay < 2 ? 'Nacht' : 'Nächte' }}
|
||||
</td>
|
||||
<td data-title="Preis p.P pro Nacht">
|
||||
{{ price.perNight|number_format(2, ',', '.') }} €
|
||||
</td>
|
||||
<td data-title="Pauschalpreis">
|
||||
<td data-title="Service-Gebühr">
|
||||
{{ price.flatPrice|number_format(2, ',', '.') }} €
|
||||
</td>
|
||||
<td data-title="Kaution">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue