Wed, 21 Jun 2017 18:24:34 +0300
Lisää aluejuttuja
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
1 | <html> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
2 | <head> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
3 | <link rel="icon" type="image/png" href="/static/favicon.png" /> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
4 | <link rel="stylesheet" type="text/css" href="/static/style.css" /> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
5 | <meta charset='UTF-8' /> |
26 | 6 | <title>{{name}}</title> |
27 | 7 | {% if amount_of_stops_in_cluster >= 5 %} |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
8 | <style> |
21 | 9 | div.stops-in-cluster |
10 | { | |
11 | margin-left: auto; | |
12 | margin-right: auto; | |
13 | } | |
14 | div.stops-in-cluster ul | |
15 | { | |
27 | 16 | columns: 3; |
21 | 17 | } |
27 | 18 | </style> |
19 | {% endif %} | |
20 | <style> | |
22 | 21 | div.stops-in-cluster li |
22 | { | |
23 | text-align: center; | |
27 | 24 | } |
25 | /* | |
22 | 26 | body |
27 | { | |
28 | background: url('/static/tausta-pysäkki.png') no-repeat center center fixed; | |
29 | background-size: cover; | |
30 | }*/ | |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
31 | </style> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
32 | </head> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
33 | <body> |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
34 | <h1><img src="/static/iso-pysäkki.png" height="96" /> <span>{{name}}</span></h1> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
35 | <p id="pysäkki-info"> |
27 | 36 | <a class="pysäkki-sijainti" href="{{link_to_map}}" target="_blank">📌 ({{location}})</a> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
37 | </p> |
21 | 38 | <p>Pysäkit ryhmässä:</p> |
39 | <div class="stops-in-cluster"> | |
40 | <ul> | |
41 | {% for stop in stops_in_cluster %} | |
42 | <li><a href="/pysäkki/{{stop['id']}}"><img src="/static/pysäkki.png" height="24" /> {{stop['id']}} {{stop['name']}}</a></li> | |
43 | {% endfor %} | |
44 | </ul> | |
45 | </div> | |
22 | 46 | <table class='aikataulu' cellspacing="0"> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
47 | <tr> |
20
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
48 | <th class='sarake-aika'>{{tr('time', 'headings')}}</th> |
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
49 | <th class='sarake-linja'>{{tr('route', 'headings')}}</th> |
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
50 | <th class='sarake-määränpää'>{{tr('destination', 'headings')}}</th> |
3199e289ae62
- Sivusto hieman edustuksellisempi
Teemu Piippo <teemu@hecknology.net>
parents:
19
diff
changeset
|
51 | <th class='sarake-pysäkki'>{{tr('bus-stop', 'headings')}}</th> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
52 | </tr> |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
53 | {% for halt in schedule %} |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
54 | <tr class="{% if halt['night'] %} yö {% endif %}"> |
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
55 | <td class='sarake-aika'>{{halt['time']}}</td> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
56 | <td class='sarake-linja linja'> |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
57 | <a href="/ajovuoro/{{halt['trip']}}">{{halt['route']}}</a> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
58 | </td> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
59 | <td class='sarake-määränpää'> |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
60 | <a href="/ajovuoro/{{halt['trip']}}">{{halt['sign']}}</a> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
61 | </td> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
62 | <td class='sarake-pysäkki'> |
24
e6bdb9c54096
Yhtenäistetty ohjelmakoodin kieli englanniksi
Teemu Piippo <teemu@hecknology.net>
parents:
22
diff
changeset
|
63 | <a href="/pysäkki/{{halt['stop_id']}}"><img src="/static/pysäkki.png" height="24" /> {{halt['stop_id']}}</a> |
19
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
64 | </td> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
65 | </tr> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
66 | {% endfor %} |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
67 | </table> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
68 | </body> |
16fa9fb20b32
Lisätty pysäkkiryhmän aikataulunäkymä
Teemu Piippo <teemu@hecknology.net>
parents:
diff
changeset
|
69 | </html> |