{% extends 'tablepage.html' %} {% block head %} {{ super() }} Multiworld Tracker for Room {{ room.id }} {% endblock %} {% block body %}
{%- if video -%}Multistream {%- endif -%}
{% 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 -%} {%- 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 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 %}{{ activity_timers[(team, player)] | render_timedelta }}None
{% endfor %} {% for team, hints in hints.items() %} {% if hints %}
{%- for hint in hints -%} {%- endfor -%}
Finder Receiver Item Location Entrance Found
{{ player_names[team, hint.finding_player] }} {{ 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 %}
{% endif %} {% endfor %}
{% endblock %}