This commit is contained in:
Edward Betts 2023-04-16 19:56:26 +01:00
parent c26383c9c0
commit a5195cba1a
7 changed files with 263 additions and 71 deletions

View file

@ -39,9 +39,13 @@
{{ crossing.shipName }}
</td>
<td class="text-nowrap">
{% if crossing.economyPrice %}
<a href="{{ cabins_url(dep, arr, crossing, "ECONOMY") }}">
£{{ crossing.economyPrice.amount }}
</a>
{% else %}
n/a
{% endif %}
</td>
<td class="text-nowrap">
<a href="{{ cabins_url(dep, arr, crossing, "STANDARD") }}">
@ -53,9 +57,11 @@
£{{ crossing.flexiPrice.amount }}
</a>
</td>
{% if crossing.petAvailabilities %}
<td>
{{ format_pet_options(crossing.petAvailabilities) | join(", ") }}
</td>
{% endif %}
<td class="text-nowrap">
{% if crossing.full %}full |{% endif %}
{% if crossing.isCabinSpaceFull %}no cabin space |{% endif %}