{% extends "base.html" %} {% block title %}Manage Player - {{ player.name }}{% endblock %} {% block content %}
Hostname: {{ player.hostname }}
Last Seen: {% if player.last_seen %} {{ player.last_seen | localtime('%Y-%m-%d %H:%M:%S') }} {% else %} Never {% endif %}
Assigned Playlist: {% if current_playlist %} {{ current_playlist.name }} (v{{ current_playlist.version }}) {% else %} No playlist assigned {% endif %}
Recent feedback from the player device
{{ log.message }}
{% if log.playlist_version %}Playlist v{{ log.playlist_version }}
{% endif %} {% if log.error_details %}{{ log.error_details }}
đ No logs received yet
Logs will appear here once the player starts sending feedback
Player ID: {{ player.id }}
Created: {{ (player.created_at | localtime) if player.created_at else 'N/A' }}
Orientation: {{ player.orientation }}
Location: {{ player.location or 'Not set' }}
Last Heartbeat: {% if player.last_heartbeat %} {{ player.last_heartbeat | localtime('%Y-%m-%d %H:%M:%S') }} {% else %} Never {% endif %}