Skip to content

Commit cfb0faa

Browse files
committed
Move 'Status' column to after 'Game' column
1 parent 104361c commit cfb0faa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

WebHostLib/templates/multiTracker.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<th>#</th>
3232
<th>Name</th>
3333
<th>Game</th>
34+
<th>Status</th>
3435
{% block custom_table_headers %}
3536
{# implement this block in game-specific multi trackers #}
3637
{% endblock %}
3738
<th class="center-column">Checks</th>
3839
<th class="center-column">&percnt;</th>
39-
<th>Status</th>
4040
<th class="center-column hours">Last<br>Activity</th>
4141
</tr>
4242
</thead>
@@ -47,13 +47,13 @@
4747
tracked_team=team, tracked_player=player)}}">{{ loop.index }}</a></td>
4848
<td>{{ player_names[(team, loop.index)]|e }}</td>
4949
<td>{{ games[player] }}</td>
50+
<td>{{ {0: "Disconnected", 5: "Connected", 10: "Ready", 20: "Playing",
51+
30: "Goal Completed"}.get(states[team, player], "Unknown State") }}</td>
5052
{% block custom_table_row scoped %}
5153
{# implement this block in game-specific multi trackers #}
5254
{% endblock %}
5355
<td class="center-column">{{ checks["Total"] }}/{{ checks_in_area[player]["Total"] }}</td>
5456
<td class="center-column">{{ percent_total_checks_done[team][player] }}</td>
55-
<td>{{ {0: "Disconnected", 5: "Connected", 10: "Ready", 20: "Playing",
56-
30: "Goal Completed"}.get(states[team, player], "Unknown State") }}</td>
5757
{%- if activity_timers[team, player] -%}
5858
<td class="center-column">{{ activity_timers[team, player].total_seconds() }}</td>
5959
{%- else -%}

0 commit comments

Comments
 (0)