Fix timezone display: Convert UTC to local time in players list

This commit is contained in:
2025-11-28 15:22:42 +02:00
parent 610227457c
commit 1fce23d3fd
2 changed files with 30 additions and 1 deletions

View File

@@ -170,7 +170,7 @@
</td>
<td>
{% if player.last_seen %}
{{ player.last_seen.strftime('%Y-%m-%d %H:%M') }}
{{ player.last_seen | localtime }}
{% else %}
<span class="text-muted">Never</span>
{% endif %}