+* {{Gehzeit}}{% endraw %}
+ {%- if walkup_time_note %} ({{ walkup_time_note }})
+ {%- else %}
+ {%- if walkup_possible is false %} (ein Aufstieg zu Fuß ist nicht möglich){% endif %}
+ {%- endif %}
+* '''Beleuchtung''': {% if nightlight_description -%}
+ {{ nightlight_description }}
+ {%- else %}
+ {%- if nightlight_possible -%}
+ {{ nightlight_possible }}
+ {%- if nightlight_weekdays %} (
+ {%- if nightlight_weekdays|length == 7 -%}
+ täglich
+ {%- else -%}
+ {{ ', '.join(nightlight_weekdays) }}
+ {%- endif -%}
+ ){% endif %}
+ {%- else -%}
+ ''Unbekannt''
+ {%- endif %}
+ {%- endif %}
+* '''Rodelverleih''': {% if sled_rental_description -%}
+{{ sled_rental_description | trim }}
+{%- else -%}
+{% if sled_rental -%}
+{% if sled_rental|length == 0 %}Nein{% endif %}
+{%- else -%}
+{{ sled_rental_direct | german_bool | default("''Unbekannt''") }}
+{%- endif %}
+{%- endif -%}
+{% for rental in sled_rental %}
+** {% set space = joiner("; ") %}
+ {%- if rental.name %}{{ space() }}
+ {%- if rental.weblink and not rental.weblink.text %}{{ weblink({"url": rental.weblink.url, "text": rental.name}) }}
+ {%- else %}{{ rental.name }}
+ {%- endif %}
+ {%- endif %}
+ {%- if rental.wr_page %}{{ space() }}{{ wr_page(rental.wr_page) }}{% endif %}
+ {%- if rental.weblink and not (rental.name and not rental.weblink.text) %}
+ {{- space() }}{{ weblink(rental.weblink) }}{% endif %}
+ {%- if rental.phone %}{{ space() }}Tel. {{ rental.phone }}{% endif %}
+ {%- if rental.address %}{{ space() }}{{ address(rental.address) }}{% endif %}
+ {%- if rental.location %}{{ space() }}{{ rental.location }}{% endif %}
+ {%- if rental.opening_hours %}{{ space() }}{{ rental.opening_hours }}{% endif %}
+ {%- if rental.note %}{{ space() }}{{ rental.note }}{% endif %}
+{%- endfor %}