Files

31 lines
2.2 KiB
HTML
Raw Permalink Normal View History

2025-11-21 07:26:02 +01:00
{%- from 'jinja2_macros.html' import construct_toggle_link with context -%}
<tr id="player_table_row_{{ player.dataset }}_{{ player.steamid }}"{%- if css_class %} class="{{ css_class }}"{%- endif -%}>
<td>
<span id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_control_select_link" class="select_button">{{ control_select_link }}</span>
</td>
<td class="nobr" id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_actions">{{ control_info_link }}{{ control_kick_link }}</td>
<td class="center" id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_level">{{ player.level }}</td>
<td id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_name" onclick="$(this).selectText();">{{ player.name }}</td>
<td id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_health">{{ player.health }}</td>
<td class="right" id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_id" onclick="$(this).selectText();">{{ player.id }}</td>
<td id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_steamid" onclick="$(this).selectText();">{{ player.steamid }}</td>
<td class="position right" id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_pos" onclick="$(this).selectText();">
<span id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_pos_x">
{{ ((player | default({})).pos | default({}) ).x | default('0') }}
</span>
<span id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_pos_y">
{{ ((player | default({})).pos | default({}) ).y | default('0') }}
</span>
<span id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_pos_z">
{{ ((player | default({})).pos | default({}) ).z | default('0') }}
</span>
</td>
<td id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_zombies">{{ player.zombies }}</td>
<td class="nobr right" id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_last_updated_servertime">
{{ player.last_updated_servertime }}
</td>
<td class="nobr right" id="player_table_row_{{ player.dataset }}_{{ player.steamid }}_last_seen_gametime">
{{ player.last_seen_gametime }}
</td>
</tr>