{% include "tracker/breakdown/block.html" with extra_classes="hidden" is_current_scene="false" %}
{% for scene_title, scene_data in scenes.items %}
{% if scene_title == current_scene %}
{% include "tracker/breakdown/block.html" with extra_classes="order-first" is_current_scene="true" %}
{% else %}
{% include "tracker/breakdown/block.html" with extra_classes="order-last hidden" is_current_scene="false" %}
{% endif %}
{% endfor %}
Summary
{% include "tracker/summary/list.html" %}
{% include "tracker/codes/index.html" %}
Hints
{% include "tracker/hints/index.html" with value="" extra_classes="hidden" %}
{% for name, value in hints.items %}
{% include "tracker/hints/index.html" %}
{% endfor %}