Vehicles by line
{% for line in lines|keys %}
{{ line | e }}
{% endfor %}
{% for trips in lines %}
{% for trip in trips %}
{{ trip.vehicle.num | default('>') | e }}
{% endfor %}
{% endfor %}
Vehicles by type
{% for type, vhcls in vehicles %}
{{ type }}
{{ vhcls | length }}
{% for vehicle in vhcls %}
{{ vehicle.num | default('>') | e }}
{% endfor %}
{% endfor %}
Generated at {{ "now" | date("Y-m-d H:i:s P") }}