{% extends 'tablepage.html' %} {% block head %} {{ super() }} Multiworld Tracker for Room {{ room.id }} {% endblock %} {% block body %}
{% for team, players in inventory.items() %} {% for name in tracking_names %} {% if name in icons %} {% else %} {% endif %} {% endfor %} {% for player, items in players.items() %} {% if (team, loop.index) in video %} {% else %} {% endif %} {% for id in tracking_ids %} {% if items[id] %} {% else %} {% endif %} {% endfor %} {% endfor %}
# Name {{ name|e }} {{ name|e }}
{{ loop.index }} {{ player_names[(team, loop.index)] }} ▶️{{ player_names[(team, loop.index)] }} {% if id in multi_items %}{{ items[id] }}{% else %}✔️{% endif %}
{% endfor %} {% for team, players in checks_done.items() %} {% for area in ordered_areas %} {% set colspan = 1 %} {% if area in key_locations %} {% set colspan = colspan + 1 %} {% endif %} {% if area in big_key_locations %} {% set colspan = colspan + 1 %} {% endif %} {% if area in icons %} {% else %} {% endif %} {% endfor %} {% for area in ordered_areas %} {% if area in key_locations %} {% endif %} {% if area in big_key_locations %} {% endif %} {% endfor %} {% for player, checks in players.items() %} {% for area in ordered_areas %} {% set checks_done = checks[area] %} {% set checks_total = checks_in_area[area] %} {% if checks_done == checks_total %} {% else %} {% endif %} {% if area in key_locations %} {% endif %} {% if area in big_key_locations %} {% endif %} {% endfor %} {% if activity_timers[(team, player)] %} {% else %} {% endif %} {% endfor %}
# Name {{ area }}{{ area }}Last
Activity
Checks Small KeyBig Key
{{ loop.index }} {{ player_names[(team, loop.index)]|e }} {{ checks_done }}/{{ checks_total }}{{ checks_done }}/{{ checks_total }}{{ inventory[team][player][small_key_ids[area]] }}{% if inventory[team][player][big_key_ids[area]] %}✔️{% endif %}{{ activity_timers[(team, player)] | render_timedelta }}None
{% endfor %}
{% endblock %}