School Map

単一目的地の選択:

{% for dest_name, dest_data in destinations.items() %} {% if not dest_name.startswith('check_point') %} {% endif %} {% endfor %}

巡回ルートの選択:

{% for route_name, destinations in routes.items() %}
経由地点: {% for dest in destinations %} {{ dest.name }}{% if not loop.last %} → {% endif %} {% endfor %}
{% endfor %}