{% extends "base.html" %} {% block title %}{{ player.username }} - Player View{% endblock %} {% block content %}

{{ player.username }}

Player details and content management

Player Information
Username:
{{ player.username }}
Hostname:
{{ player.hostname }}
Status:
{% if player.is_active %} Active {% else %} Inactive {% endif %}
Created:
{{ player.created_at.strftime('%Y-%m-%d %H:%M') if player.created_at else 'N/A' }}
Last Seen:
{% if player.last_seen %} {{ player.last_seen.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %}
Groups:
{% if player.groups %} {% for group in player.groups %} {{ group.name }} {% endfor %} {% else %} No groups {% endif %}
Quick Actions
Open Display
Player Content
Add Content
{% if content %}
{% for item in content %} {% endfor %}
Position Filename Type Duration Uploaded Actions
{{ item.position }} {{ item.file_name }} {% if item.original_name %}
{{ item.original_name }} {% endif %}
{% if item.content_type == 'image' %} Image {% elif item.content_type == 'video' %} Video {% else %} {{ item.content_type }} {% endif %} {{ item.duration }}s {{ item.uploaded_at.strftime('%m/%d %H:%M') if item.uploaded_at else 'N/A' }}
{% else %}
No Content Available

This player doesn't have any content assigned yet.

Upload First Content
{% endif %}
{% endblock %}