Update
This commit is contained in:
parent
a5195cba1a
commit
7599f655ad
6 changed files with 72 additions and 26 deletions
|
|
@ -42,7 +42,8 @@ a:link {
|
|||
<th>description</th>
|
||||
<th>births</th>
|
||||
<th>quantity<br/>available</th>
|
||||
<th class="text-end">price</th>
|
||||
<th class="text-end">cabin<br/>price</th>
|
||||
<th class="text-end">total<br/>price</th>
|
||||
</tr>
|
||||
{% for a in accommodations if a.quantityAvailable > 0 %}
|
||||
<tr>
|
||||
|
|
@ -57,10 +58,12 @@ a:link {
|
|||
{% endif %}
|
||||
</td>
|
||||
<td class="text-end">£{{ a.unitCost.amount }}</td>
|
||||
<td class="text-end">£{{ a.unitCost.amount + crossing.flexiPrice.amount }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
{% if pet_accommodations %}
|
||||
<h4>Pet accommodations</h4>
|
||||
|
||||
{% set pets = {"G": "stay in car", "B": "large kennel", "K": "small kennel" } %}
|
||||
|
|
@ -71,6 +74,8 @@ a:link {
|
|||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endif %}
|
||||
|
||||
<h4>Sailing</h4>
|
||||
|
||||
<ul>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue