{% extends '__layout__.html' %} {% block title %}Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
< Return to User Page

{{userObj.username}} Game Sessions

UserId: {{userObj.id}}

{% for session in GameSessions: %} {% endfor %}
ID JobId Joined At Left At Place
{{session.id}} {{session.serveruuid}} {{session.joined_at}} UTC {{session.left_at}} UTC {{get_place_name(session.place_id)}} ({{session.place_id}})
{% if len(GameSessions.items) == 0: %}

No Game Session Logs Found

{%endif%}
Previous

Page {{GameSessions.page}} of {{GameSessions.pages}}

Next
{% endblock %}