{% extends 'tablepage.html' %} {% block head %} {{ super() }} 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 checks_done.items() %}
{%- for player, checks in players.items() -%} {%- if activity_timers[(team, player)] -%} {%- else -%} {%- endif -%} {%- endfor -%}
# Name Checks % Last
Activity
{{ loop.index }} {{ player_names[(team, loop.index)]|e }} {{ checks["Total"] }}/{{ checks_in_area[player]["Total"] }} {{ percent_total_checks_done[team][player] }}{{ activity_timers[(team, player)].total_seconds() }}None
{% endfor %} {% for team, hints in hints.items() %}
{%- for hint in hints -%} {%- endfor -%}
Finder Receiver Item Location Entrance Found
{{ long_player_names[team, hint.finding_player] }} {{ long_player_names[team, hint.receiving_player] }} {{ hint.item|item_name }} {{ hint.location|location_name }} {% if hint.entrance %}{{ hint.entrance }}{% else %}Vanilla{% endif %} {% if hint.found %}✔{% endif %}
{% endfor %}
{% endblock %}