{% extends 'material_base.html' %} {% block title %}Channels listing page{% endblock %} {% block description %}Channels listing page of the AYTA system{% endblock %} {% block content %}

Channels lising page

All channels
Recent videos

The last videos to have been added to the archive

Orphaned videos

Individual videos which do not have a permanent channel linked

{% for channel in channels %}
{{ channel.get('original_name') }}

{{ channel.get('id') }}

Added: {{ channel.get('added_date')|pretty_time }} | Active: {{ channel.get('active') }} | Videos: {{ channel.get('video_count') }}

{% endfor %}
{% endblock %}