{% extends "base.html" %} {% block title %}Content Library - DigiServer v2{% endblock %} {% block content %}
| 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 %} |