{% extends "base.html" %} {% block title %}{{ player.username }} - Player View{% endblock %} {% block content %}
Player details and content management
{{ player.hostname }}| 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' }} |
|