{% extends "base.html" %} {% block title %}Manage Content - KYGNus{% endblock %} {% block content %}

Manage Videos

{% for item in video_structure %} {% if item.type == 'video' %}
{{ item.name }} {{ item.duration }}

{{ item.name }}

{{ format_views(item.views) }} views • {{ format_date(item.upload_date) }}
{% elif item.type == 'folder' %} {% for video in item.contents %}
{{ video.name }} {{ video.duration }}

{{ video.name }}

{{ format_views(video.views) }} views • {{ format_date(video.upload_date) }}
{% endfor %} {% endif %} {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}