{% extends 'index.html' %} {% load static %} {% block content %}
A trans pride fox emoji.  Tunic Transition Tracker

Overview
Checks: {{ totals.Checks.Undiscovered }}/{{ totals.Checks.Total }}
Entrances: {{ totals.Entrances.Undiscovered }}/{{ totals.Entrances.Total }}

Breakdown
{% for scene, scene_totals in totals.items %} {% if scene != 'Entrances' and scene != 'Checks' %}
{{ scene }}:
Checks: {{ scene_totals.Checks.Undiscovered }}/{{ scene_totals.Checks.Total }}
Entrances: {{ scene_totals.Entrances.Undiscovered }}/{{ scene_totals.Entrances.Total }}
{% endif %} {% endfor %}
{{ scene }}
Checks: {{ scene_data.Totals.Checks.Undiscovered }}/{{ scene_data.Totals.Checks.Total }}

{% for check_name, check in scene_data.Checks.items %} {% if not check.Check %}
    ❌ {{ check_name }}
{% endif %} {% endfor %}
Entrances: {{ scene_data.Totals.Entrances.Undiscovered }}/{{ scene_data.Totals.Entrances.Total }}

{% for entrance_origin, entrance_destination in scene_data.Entrances.items %} {% if not entrance_destination.Entrance != '' %}
    ❌ {{ entrance_origin }} -> {{ entrance_destination.Entrance }}
{% endif %} {% endfor %}
{% for entrance_origin, entrance_destination in scene_data.Entrances.items %} {% if entrance_destination.Entrance %}
    ✔️ {{ entrance_origin }} -> {{ entrance_destination.Entrance }}
{% endif %} {% endfor %}
Tracker Debug
    Name: {{ debug.Name }}
    Seed: {{ debug.Seed }}
    Spoiler Seed: {{ debug.SpoilerSeed }}
    Archipelago: {{ debug.Archipelago }}
    Randomized: {{ debug.Randomized }}
    Hex Quest: {{ debug.HexQuest }}
    Entrance Randomizer: {{ debug.EntranceRando }}
    Fixed Shops: {{ debug.FixedShops }}
{% endblock %}