Skip to content

Commit

Permalink
Fixes multi-tracker checks sorting.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydondzila committed Jun 26, 2023
1 parent 71bfb6b commit 9256e04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion WebHostLib/templates/multiTracker.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
{% block custom_table_row scoped %}
{# implement this block in game-specific multi trackers #}
{% endblock %}
<td class="center-column">{{ checks["Total"] }}/{{ checks_in_area[player]["Total"] }}</td>
<td class="center-column" data-sort="{{ checks["Total"] }}">
{{ checks["Total"] }}/{{ checks_in_area[player]["Total"] }}
</td>
<td class="center-column">{{ percent_total_checks_done[team][player] }}</td>
<td>{{ {0: "Disconnected", 5: "Connected", 10: "Ready", 20: "Playing",
30: "Goal Completed"}.get(states[team, player], "Unknown State") }}</td>
Expand Down

0 comments on commit 9256e04

Please sign in to comment.