Importing and validating...
{% if custom_tracks_info | length == 0 %}
No custom worlds
Import a world archive (.tar.gz) exported from the 3D Track Builder.
{% else %}
{% for track_id, track_info in custom_tracks_info.items() %}
{{ track_id }}
{% if track_info.track_length %}Length: {{ "%.1f" | format(track_info.track_length) }}m{% endif %}
{% if track_info.track_width %}Width: {{ "%.2f" | format(track_info.track_width) }}m{% endif %}
Waypoints
{% endfor %}
{% endif %}