{% for team, hints in hints.items() %}
Finder | Receiver | Item | Location | Game | Entrance | Found |
---|---|---|---|---|---|---|
{% if get_slot_info(team, hint.finding_player).type == 2 %} {{ player_names_with_alias[(team, hint.finding_player)] }} {% else %} {{ player_names_with_alias[(team, hint.finding_player)] }} {% endif %} | {% if get_slot_info(team, hint.receiving_player).type == 2 %} {{ player_names_with_alias[(team, hint.receiving_player)] }} {% else %} {{ player_names_with_alias[(team, hint.receiving_player)] }} {% endif %} | {{ item_id_to_name[games[(team, hint.receiving_player)]][hint.item] }} | {{ location_id_to_name[games[(team, hint.finding_player)]][hint.location] }} | {{ games[(team, hint.finding_player)] }} | {% if hint.entrance %}{{ hint.entrance }}{% else %}Vanilla{% endif %} | {% if hint.found %}✔{% endif %} |