templates/cluster.html

Sun, 02 Jul 2017 16:18:29 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 02 Jul 2017 16:18:29 +0300
changeset 43
1c9102fea431
parent 38
d0ae1996abdd
child 48
428cfdf64ccc
permissions
-rw-r--r--

Prioriteettejä...

<html>
<head>
	<link rel="icon" type="image/png" href="../static/favicon.png" />
	<link rel="stylesheet" type="text/css" href="../static/style.css" />
	<meta charset='UTF-8' />
	<meta http-equiv='refresh' content='60'>
	<title>{{name}}</title>
	{% if amount_of_stops_in_cluster >= 5 %}
	<style>
	div.stops-in-cluster
	{
		margin-left: auto;
		margin-right: auto;
	}
	div.stops-in-cluster ul
	{
		columns: 3;
	}
	</style>
	{% endif %}
	<style>
	div.stops-in-cluster li
	{
		text-align: center;
	}
	.sarake-määränpää, .sarake-pysäkki
	{
		text-align: left;
	}
	/*
	body
	{
		background: url('/static/tausta-pysäkki.png') no-repeat center center fixed;
		background-size: cover;
	}*/
	</style>
</head>
<body>
	<h1><img src="../static/pysäkki.png" height="96" /> <span>{{name}}</span></h1>
	<p id="pysäkki-info">
		<a class="pysäkki-sijainti" href="{{link_to_map}}" target="_blank">📌 ({{location}})</a>
	</p>
	<div class="stops-in-cluster">
	<ul>
	{% for stop in stops_in_cluster %}
		<li><a href="../pysäkki/{{stop['id']}}"><img src="../static/pysäkki.png" height="24" /> {{stop['code']}} {{stop['name']}}</a></li>
	{% endfor %}
	</ul>
	</div>
	<table class='aikataulu' cellspacing="0">
		<tr>
			<th class='sarake-aika'>{{tr('time', 'headings')}}</th>
			<th class='sarake-linja'>{{tr('route', 'headings')}}</th>
			<th class='sarake-määränpää'>{{tr('destination', 'headings')}}</th>
			<th class='sarake-pysäkki'>{{tr('bus-stop', 'headings')}}</th>
		</tr>
		{% for halt in schedule %}
		<tr class="{% if halt['night'] %}{% endif %}">
			<td class='sarake-aika'>
				{% if halt['imminent'] %}
				<span class='imminent-leave'></span>
				{% endif %}
				{{halt['time']}}
			</td>
			<td class='sarake-linja linja'>
				<a href="../ajovuoro/{{halt['trip']}}">{{halt['route']}}</a>
			</td>
			<td class='sarake-määränpää'>
				<a href="../ajovuoro/{{halt['trip']}}">{{halt['sign']}}</a>
			</td>
			<td class='sarake-pysäkki'>
				<a href="../pysäkki/{{halt['stop_id']}}"><img src="../static/pysäkki.png" height="24" /> {{halt['stop_code']}}</a>
			</td>
		</tr>
		{% endfor %}
	</table>
</body>
</html>

mercurial