diff -r e27c18f080d1 -r f49c984c8fa1 templates/interesting.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/interesting.html Tue May 01 13:23:15 2018 +0300 @@ -0,0 +1,68 @@ +{% from "macros.html" import route_rep %} + + + + + + {{tr('interesting', 'headings')}} + + + + + + + + + + + {% for day_data in data %} + + + + + + + + + + + + {% for entry in day_data['leaves'] %} + + + + + + + {% endfor %} + + {% endfor %} +
+ {{tr('interesting', 'headings')}} +
+ {{day_data['date'].strftime('%A %e. %B %Y')}} + +
{{tr('time', 'headings')}}{{tr('start-bus-stop', 'headings')}}{{tr('route', 'headings')}}{{tr('trip-description', 'headings')}}
+ {{entry['departure'].strftime('%H:%M')}} + {{entry['stop'].code}}
{{entry['stop'].name}}
+
+ {{entry['route']}} + + {{entry['description']}} +
+ +