# HG changeset patch # User Teemu Piippo # Date 1525170195 -10800 # Node ID f49c984c8fa1d9daebd52d60b3ccaf264fd31fa9 # Parent e27c18f080d1d230e68b19486188baba387970e4 added a file 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']}} +
+ +