{% if public_transport_lines|length + public_transport_links|length > 0 -%}
* '''Fahrplan''':
{% for pt_line in public_transport_lines -%}
-** {% if pt_line.timetable_template is defined %}{{ h.json_template(pt_line.timetable_template) }}
- {%- else %}{{ pt_line.name }}{% endif %}
+** {% set space = joiner(" ") %}
+ {%- if pt_line.name %}{{ space() }}{{ pt_line.name }}{% endif %}
+ {%- if pt_line.label %}{{ space() }}{{ pt_line.label }}{% endif %}
+ {%- if pt_line.timetable_template %}{{ space() }}{{ h.json_template(pt_line.timetable_template) }}{% endif %}
+ {%- if pt_line.route %}{{ space() }}{{ pt_line.route }}{% endif %}
+ {%- if pt_line.note %}{{ space() }}{{ pt_line.note }}{% endif %}
+ {%- for tl in pt_line.timetable_links %}{{ space() }}{{ weblink(tl) }}{% endfor %}
{% endfor -%}
{% for link in public_transport_links -%}
** {{ weblink(link) }}