Tue, 13 Jun 2017 00:47:24 +0300
Yleistä päivittelyä
0 | 1 | <html> |
2 | <head> | |
11
e18ad36fbbf5
Lisätty favicon, korjattu tr()-funktio joka ei olettunut suomen kieleen (vaan kääntämättömään)
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
3 | <link rel="icon" type="image/png" href="/static/favicon.png" /> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
14
diff
changeset
|
4 | <link rel="stylesheet" type="text/css" href="/static/style.css" /> |
0 | 5 | <meta charset='UTF-8' /> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
14
diff
changeset
|
6 | <title>{{nimi}}</title> |
0 | 7 | <style> |
21 | 8 | .sarake-määränpää |
9 | { | |
10 | text-align: left; | |
11 | } | |
0 | 12 | </style> |
13 | </head> | |
14 | <body> | |
21 | 15 | <h1><img src="/static/iso-pysäkki.png" height="96" /> <span>{{nimi}}</span></h1> |
5 | 16 | <p id="pysäkki-info"> |
17 | {{alue or ""}} | |
18 | — | |
19 | <a class="pysäkki-sijainti" href="{{linkki_karttaan}}" target="_blank">📌 ({{sijainti}})</a> | |
20 | </p> | |
20
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
21 | {% if cluster %} |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
14
diff
changeset
|
22 | <p> |
20
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
23 | <a href="/pysäkkiryhmä/{{cluster}}">{{tr('nearby-area-schedule', 'misc-text')}}</a> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
14
diff
changeset
|
24 | </p> |
20
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
25 | {% endif %} |
5 | 26 | <table id='aikataulu' cellspacing="0"> |
0 | 27 | <tr> |
20
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
28 | <th class='sarake-aika'>{{tr('time', 'headings')}}</th> |
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
29 | <th class='sarake-linja'>{{tr('route', 'headings')}}</th> |
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
30 | <th class='sarake-määränpää'>{{tr('destination', 'headings')}}</th> |
0 | 31 | </tr> |
32 | {% for rivi in aikataulu %} | |
5 | 33 | <tr class="{% if rivi['yö'] %} yö {% endif %}"> |
0 | 34 | <td class='sarake-aika'>{{rivi['aika']}}</td> |
35 | <td class='sarake-linja linja'> | |
36 | <a href="/ajovuoro/{{rivi['ajovuoro']}}">{{rivi['linja']}}</a> | |
37 | </td> | |
38 | <td class='sarake-määränpää'> | |
39 | <a href="/ajovuoro/{{rivi['ajovuoro']}}">{{rivi['kyltti']}}</a> | |
40 | </td> | |
41 | </tr> | |
42 | {% endfor %} | |
43 | </table> | |
44 | </body> | |
4 | 45 | </html> |