Sun, 15 Apr 2018 13:51:39 +0300
map updates
<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' /> <title>{{name}}</title> <meta http-equiv='refresh' content='60'> </head> <body> <h1><span>{{name}}</span></h1> <table class='aikataulu' cellspacing="0"> <tr> <th class='sarake-aika'>{{tr('time', 'headings')}}</th> <th class='sarake-lähtö'>{{tr('from', 'headings')}}</th> <th class='sarake-määränpää'>{{tr('destination', 'headings')}}</th> <th class='sarake-status'>{{tr('status', 'headings')}}</th> </tr> {% for trip in schedule %} <tr> <td>{{trip['time']}}</td> <td><a href="../trip/{{trip['name']}}">{{trip['from']}}</a></td> <td><a href="../trip/{{trip['name']}}">{{trip['to']}}</a></td> <td><a href="../trip/{{trip['name']}}">{{trip['status']}}</a></td> </tr> {% endfor %} </table> </body> </html>