Mon, 05 Mar 2018 12:47:40 +0200
updated priorities
29 | 1 | <html> |
2 | <head> | |
35 | 3 | <link rel="icon" type="image/png" href="../static/favicon.png" /> |
4 | <link rel="stylesheet" type="text/css" href="../static/style.css" /> | |
29 | 5 | <meta charset='UTF-8' /> |
6 | <title>{{name}}</title> | |
32
ca1a0ea81cf6
Yhdistetty pysäkki.png ja iso-pysäkki.png
Teemu Piippo <teemu@hecknology.net>
parents:
29
diff
changeset
|
7 | <meta http-equiv='refresh' content='60'> |
29 | 8 | </head> |
9 | <body> | |
10 | <h1><span>{{name}}</span></h1> | |
11 | <table class='aikataulu' cellspacing="0"> | |
12 | <tr> | |
13 | <th class='sarake-aika'>{{tr('time', 'headings')}}</th> | |
14 | <th class='sarake-lähtö'>{{tr('from', 'headings')}}</th> | |
15 | <th class='sarake-määränpää'>{{tr('destination', 'headings')}}</th> | |
16 | <th class='sarake-status'>{{tr('status', 'headings')}}</th> | |
17 | </tr> | |
18 | {% for trip in schedule %} | |
19 | <tr> | |
20 | <td>{{trip['time']}}</td> | |
48
428cfdf64ccc
Lisätty uudelleenohjauksia
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
21 | <td><a href="../trip/{{trip['name']}}">{{trip['from']}}</a></td> |
428cfdf64ccc
Lisätty uudelleenohjauksia
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
22 | <td><a href="../trip/{{trip['name']}}">{{trip['to']}}</a></td> |
428cfdf64ccc
Lisätty uudelleenohjauksia
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
23 | <td><a href="../trip/{{trip['name']}}">{{trip['status']}}</a></td> |
29 | 24 | </tr> |
25 | {% endfor %} | |
26 | </table> | |
27 | </body> | |
28 | </html> |