Thu, 17 May 2018 22:56:41 +0300
areas
{% from "macros.html" import route_rep, bus_stop_rep %} <html> <head> <base href='..' /> <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('trip-description', 'headings')}}</th> </tr> {% for stop, schedule in schedules.items() %} <thead> <tr> <td colspan='2'>{{bus_stop_rep(stop)}}</th> </tr> </thead> {% for trip in schedule %} <tr> <td>{{trip['time']}}</td> <td><a href="./trip/{{trip['name']}}">{{trip['description']}}</a></td> </tr> {% endfor %} {% endfor %} </table> </body> </html>