diff --git a/WebHostLib/templates/playerTracker.html b/WebHostLib/templates/playerTracker.html index b297f7cd..e9e9e517 100644 --- a/WebHostLib/templates/playerTracker.html +++ b/WebHostLib/templates/playerTracker.html @@ -56,19 +56,27 @@ - - + {% if key_locations and "Universal" not in key_locations %} + + {% endif %} + {% if big_key_locations %} + + {% endif %} {% for area in sp_areas %} {{ area }} {{ checks_done[area] }} / {{ checks_in_area[area] }} - - {{ inventory[small_key_ids[area]] if area in key_locations else 'N/A' }} - - - {{ '✔' if area in big_key_locations and inventory[big_key_ids[area]] else ('N/A' if area not in big_key_locations else '') }} - + {% if key_locations and "Universal" not in key_locations %} + + {{ inventory[small_key_ids[area]] if area in key_locations else 'N/A' }} + + {% endif %} + {% if big_key_locations %} + + {{ '✔' if area in big_key_locations and inventory[big_key_ids[area]] else ('N/A' if area not in big_key_locations else '') }} + + {% endif %} {% endfor %}