PID-odjezdy/flask/templates/index.html

56 lines
1.9 KiB
HTML
Raw Normal View History

2023-10-19 18:37:19 +02:00
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<title>Hello, world!</title>
</head>
<body>
<div class="container">
{% for stop in data %}
<p style="font-size: 24px">{{ stop.name }}</p>
<table class="table table-striped table-sm">
<thead>
<tr>
<th scope="col">Linka</th>
<th scope="col">Odjezd za</th>
<!-- <th scope="col">Směr</th> -->
<th scope="col">Zpoždění</th>
<th scope="col">AC</th>
<th></th>
</tr>
</thead>
<tbody>
{% for car in stop.cars %}
<tr>
<th scope="row">{{ car.id }}</th>
<td>{{ car.departure }} min</td>
<!-- <td>{{ car.dir }}</td> -->
<td>{{ car.delay }} sec</td>
<td>{% if car.ac %} <i class="bi bi-snow"></i> {% endif %} </td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
<caption>Odjezdy jsou včetně zpoždění</caption>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>