WebHost: Fixes multi-tracker checks sorting. (#1893)

This commit is contained in:
Kory Dondzila
2023-06-27 21:40:29 -04:00
committed by GitHub
parent 99656bf059
commit 76cace725b

View File

@@ -52,7 +52,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>
{%- if activity_timers[team, player] -%}
<td class="center-column">{{ activity_timers[team, player].total_seconds() }}</td>