mirror of
https://git.nolog.cz/mdivecky/PID-odjezdy.git
synced 2025-01-31 13:13:35 +01:00
56 lines
1.9 KiB
HTML
56 lines
1.9 KiB
HTML
|
<!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>
|
||
|
|
||
|
|
||
|
|