{% extends "base.html" %} {% block title %}Player Management - SKE Digital Signage{% endblock %} {% block content %}
Manage digital signage players and their configurations
| Player Name | Hostname | Status | Group | Last Seen | Version | Actions | |
|---|---|---|---|---|---|---|---|
| {{ player.username }} {% if player.locked_to_group_id %} {% endif %} |
{{ player.hostname or 'Not set' }}
|
{% if player.is_active %} {% if player.last_seen and (now() - player.last_seen).total_seconds() < 300 %} Online {% else %} Active {% endif %} {% else %} Inactive {% endif %} | {% if player.locked_to_group_id %} Group {{ player.locked_to_group_id }} {% else %} No group {% endif %} | {% if player.last_seen %} {{ player.last_seen.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %} | v{{ player.playlist_version or 0 }} |