{% extends "base.html" %} {% block content %} {% if video_structure|selectattr('type', 'equalto', 'video')|list %}

Videos

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

{{ item.name }}

KYGNus Channel
{{ format_views(item.views) }} views • {{ format_date(item.upload_date) }}
{% endif %} {% endfor %}
{% endif %} {% for item in video_structure %} {% if item.type == 'folder' %}

{{ item.name }} {{ item.count }} videos

{% for video in item.contents %}
{{ video.name }} {{ video.duration }}

{{ video.name }}

KYGNus Channel
{{ format_views(video.views) }} views • {{ format_date(video.upload_date) }}
{% endfor %}
{% endif %} {% endfor %} {% endblock %}