{% extends 'base.html.twig' %} {% block title %}Logs für {{ playerName }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %}

Logs für {{ playerName }} {{ totalLogs }} Einträge

Spieler-Logs
{% if logs is empty %}

Keine Logs für {{ playerName }} gefunden

Dieser Spieler hat noch keine Aktivitäten im Server-Log.

Zurück zu allen Logs
{% else %} {% for log in logs %}
{{ log.timestamp|date('d.m.Y H:i:s') }} {{ log.logType }} {% if log.action %} {{ log.action }} {% endif %} {% if log.steamId %} {{ log.steamId }} {% endif %}
{{ log.filename }}
{{ log.logMessage }}
{% if log.metadata is not empty %}
{% for key, value in log.metadata %} {% if key == 'coordinates' and value is not empty %} {{ key|capitalize }}: {{ value.x|round(2) }}, {{ value.y|round(2) }}, {{ value.z|round(2) }} {% elseif value is not empty %} {{ key|capitalize }}: {{ value }} {% endif %} {% endfor %}
{% endif %}
{% endfor %} {% if totalPages > 1 %} {% endif %} {% endif %}
{% endblock %}