templates/ajovuoro.html

Tue, 18 Apr 2017 14:59:18 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 18 Apr 2017 14:59:18 +0300
changeset 2
48efa8ca14dd
parent 0
fc48613c73e5
child 4
312c432bb9e6
permissions
-rw-r--r--

Suppea ajovuoroesitys

<html>
<head>
	<meta charset='UTF-8' />

	<style>
	body
	{
		font-family: "Latin Modern Sans", Tahoma, FreeSans, Arial, sans-serif;
		background: white;
		color: black;
		margin: 0;
		padding: 0;
		font-size: 24pt;
	}
	h1
	{
		padding-top: 10pt;
		padding-bottom: 10pt;
		text-align: center;
		background: #dc9e00;
		background: linear-gradient(to bottom, #dc9e00 0%,#eaaf19 49%,#dc9e00 92%,#906700 100%);
		color: white;
	}
	a
	{
		color: inherit;
		text-decoration: none;
	}
	a:hover
	{
		text-decoration: underline;
	}
	#aikataulu
	{
		width:100%;
		margin: auto;
	}
	#aikataulu td
	{
		text-align: center;
	}
	td, th, body
	{
		font-size: 24pt;
	}
	
	.sarake-aika, .sarake-tunniste
	{
		width: 15%;
	}
	
	h1
	{
		font-variant: small-caps;
	}
	</style>
	<title>Ajovuoro #{{numero}}: {{linja}} {{selite}}</title>
</head>
<body>
	<h1>Ajo {{numero}}: {{linja}} {{selite}}</h1>
	<table id='aikataulu'>
		<tr>
			<th class='sarake-aika'>Aika</th>
			<th class='sarake-linja'>Viite</th>
			<th class='sarake-nimi'>Nimi</th>
			<th class='sarake-alue'>Alue</th>
		</tr>
		{% for rivi in reitti %}
		<tr>
			<td class='sarake-aika'>{{rivi['aika']}}</td>
			<td class='sarake-tunniste'>
				<a href="/pysäkki/{{rivi['tunniste']}}">{{rivi['tunniste']}}</a>
			</td>
			<td class='sarake-nimi'>
				<a href="/pysäkki/{{rivi['tunniste']}}">{{rivi['nimi']}}</a>
			</td>
			<td class='sarake-alue'>
				{{rivi['alue'] or ''}}
			</td>
		</tr>
		{% endfor %}
	</table>
</body>
</html>

mercurial