戻る
戻る
単一目的地の選択:
{% for dest_name, dest_data in destinations.items() %} {% if not dest_name.startswith('check_point') %}
{{ dest_name }}
{% endif %} {% endfor %}
巡回ルートの選択:
{% for route_name, destinations in routes.items() %}
{{ route_name }}
経由地点: {% for dest in destinations %} {{ dest.name }}{% if not loop.last %} → {% endif %} {% endfor %}
{% endfor %}