Show pickups in copy and paste export

This commit is contained in:
Björn Fromme
2018-08-01 14:38:31 +02:00
parent 9c7bbcb353
commit 94150f12cd
@@ -99,7 +99,7 @@
<label class="control-label">Ausstattung</label>
<textarea rows="5" class="form-control" onclick="this.select()">{hotel.features}</textarea>
</div>
<h4>Termine, Zimmer und Leistungen</h4>
<h4>Termine, Zimmer, Leistungen und Zustiege</h4>
<f:if condition="{hotel.dates.date}">
<f:then>
<f:for each="{hotel.dates.date}" as="date">
@@ -170,6 +170,31 @@
</table>
</td>
</tr>
<tr>
<th>Zustiege</th>
<td>
<table class="table table-condensed">
<thead>
<tr>
<th>Stadt</th>
<th>Straße</th>
<th>Zeit</th>
<th>Preis</th>
</tr>
</thead>
<tbody>
<f:for each="{date.pickups.pickup}" as="pickup">
<tr>
<td>{pickup.city}</td>
<td>{pickup.street}</td>
<td>{pickup.time}</td>
<td>{pickup.price} €</td>
</tr>
</f:for>
</tbody>
</table>
</td>
</tr>
<tr>
<th>Buchungslink</th>
<td><a href="{date.bookingurl}" target="_blank">URL</a></td>