{% extends "base.html" %} {% block title %}Players - DigiServer v2{% endblock %} {% block content %}

Players

+ Add New Player
{% if players %}
{% for player in players %} {% endfor %}
Name Hostname Location Group Orientation Status Last Seen Actions
{{ player.name }} {{ player.hostname }} {{ player.location or '-' }} {% if player.group %} {{ player.group.name }} {% else %} No group {% endif %} {{ player.orientation or 'Landscape' }} {% set status = player_statuses.get(player.id, {}) %} {% if status.get('is_online') %} Online {% else %} Offline {% endif %} {% if player.last_heartbeat %} {{ player.last_heartbeat.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %} đŸ‘ī¸ View âœī¸ Edit â›ļ Full
{% else %}
â„šī¸ No players yet. Add your first player
{% endif %}
{% endblock %}