2022-09-03 21:38:46 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Ferries to France</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
2023-01-08 11:49:57 +00:00
|
|
|
|
|
|
|
<!--
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table { color: white; }
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: rgb(127, 127, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-09-03 21:38:46 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="m-3">
|
|
|
|
|
|
|
|
<h1>{{ departure_port }} to {{ arrival_port }}</h1>
|
|
|
|
|
|
|
|
<p>{{ departure_date }} {{ ticket_tier }}</p>
|
|
|
|
|
2023-01-08 11:49:57 +00:00
|
|
|
<table class="table w-auto">
|
2022-09-03 21:38:46 +01:00
|
|
|
<tr>
|
|
|
|
<th>code</th>
|
|
|
|
<th>description</th>
|
2023-01-08 11:49:57 +00:00
|
|
|
<th>births</th>
|
|
|
|
<th>quantity<br/>available</th>
|
2022-09-03 21:38:46 +01:00
|
|
|
<th>price</th>
|
|
|
|
</tr>
|
|
|
|
{% for a in accommodations if a.quantityAvailable > 0 %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ a.code }}</td>
|
|
|
|
<td>{{ a.description }}</td>
|
|
|
|
<td>{{ a.maxAdults }}</td>
|
2023-01-08 11:49:57 +00:00
|
|
|
<td>
|
|
|
|
{% if a.quantityAvailable == 10 %}
|
|
|
|
10+
|
|
|
|
{% else %}
|
|
|
|
{{ a.quantityAvailable }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
2022-09-03 21:38:46 +01:00
|
|
|
<td>£{{ a.unitCost.amount }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2023-01-08 11:49:57 +00:00
|
|
|
<h4>Pet accommodations</h4>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
o.petStayInCar = 'G',<br>
|
|
|
|
o.petLargeKennel = 'B',<br>
|
|
|
|
o.petSmallKennel = 'K',<br>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<pre>{{ pet_accommodations | tojson }}</pre>
|
|
|
|
|
2022-09-03 21:38:46 +01:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|