{% extends 'tablepage.html' %} {% block head %} {{ super() }} ALttP Multiworld Tracker {% endblock %} {% block body %} {% include 'header/dirtHeader.html' %} {% include 'multiTrackerNavigation.html' %}
Multistream Clicking on a slot's number will bring up a slot-specific auto-tracker. This tracker will automatically update itself periodically.
{% 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 -%} {%- if video[(team, loop.index)][0] == "Twitch" -%} {%- elif video[(team, loop.index)][0] == "Youtube" -%} {%- endif -%} {%- 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)] }} ▶️{{ 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 -%} {% if player in checks_in_area and area in checks_in_area[player] %} {%- set checks_done = checks[area] -%} {%- set checks_total = checks_in_area[player][area] -%} {%- if checks_done == checks_total -%} {%- else -%} {%- endif -%} {%- if area in key_locations -%} {%- endif -%} {%- if area in big_key_locations -%} {%- endif -%} {% else %} {%- if area in key_locations -%} {%- endif -%} {%- if area in big_key_locations -%} {%- endif -%} {% endif %} {%- endfor -%} {%- if activity_timers[(team, player)] -%} {%- else -%} {%- endif -%} {%- endfor -%}
# Name {{ area }}{{ area }}% Last
Activity
Checks Small Key Big 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 %}{{ "{0:.2f}".format(percent_total_checks_done[team][player]) }}{{ activity_timers[(team, player)].total_seconds() }}None
{% endfor %} {% include "hintTable.html" with context %}
{% endblock %}