Initial commit
This commit is contained in:
commit
cbc681ddbc
9 changed files with 568 additions and 0 deletions
17
templates/route.html
Normal file
17
templates/route.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<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">
|
||||
</head>
|
||||
|
||||
{% from "individual_route.html" import route_table with context %}
|
||||
|
||||
<body>
|
||||
<div class="m-3">
|
||||
<p>{{ departure_port.title() }} to {{ arrival_port.title() }}</p>
|
||||
{{ route_table(days) }}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue