{% extends "_base.html" %} {% block content %}

Custom Worlds

{{ custom_tracks_info | length }} tracks
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 }}
{{ 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 %}

Official Worlds

{{ tracks_info | length }} tracks
{% for track_id, track_info in tracks_info.items() %}
{{ track_id }}
{{ track_id }}
Length: {{ "%.1f" | format(track_info.track_length) }}m
Width: {{ "%.2f" | format(track_info.track_width) }}m
Waypoints
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}