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

Content Library

+ Upload Content
{% if content_list %}
Total Files: {{ content_list|length }} | Total Assignments: {% set total = namespace(count=0) %}{% for item in content_list %}{% set total.count = total.count + item.player_count %}{% endfor %}{{ total.count }}
{% for item in content_list %} {% endfor %}
File Name Type Duration Size Assigned To Uploaded Actions
{{ item.filename }} {% if item.content_type == 'image' %} 📷 Image {% elif item.content_type == 'video' %} đŸŽŦ Video {% elif item.content_type == 'pdf' %} 📄 PDF {% elif item.content_type == 'presentation' %} 📊 PPT {% else %} 📁 Other {% endif %} {{ item.duration }}s {{ item.file_size }} MB {% if item.player_count == 0 %} Not assigned {% else %}
{% for player in item.players %}
{{ player.name }} {% if player.group %} ({{ player.group }}) {% endif %}
{% endfor %}
{{ item.player_count }} player{% if item.player_count != 1 %}s{% endif %}
{% endif %}
{{ item.uploaded_at | localtime }} {% if item.player_count > 0 %} {% set first_player = item.players[0] %} 📝 Manage Playlist {% if item.player_count > 1 %} {% endif %} {% endif %}
{% else %}
â„šī¸ No content uploaded yet. Upload your first content
{% endif %}
{% endblock %}