{% extends 'material_base.html' %} {% block title %}Videos of {{ channel.get('original_name') }}{% endblock %} {% block description %}Video listings of {{ channel.get('original_name') }}{% endblock %} {% block content %}

Channels lising page

All videos archived of {{ channel.get('original_name') }}
{% if channel.get('active') is false %}

This channel is disabled from periodic archiving because of: {{ channel.get('disable_reason') }}

{% endif %}
{% for video in videos %}
{{ video.get('title') }}

{{ video.get('id') }} | {{ video.get('upload_date')|pretty_time }}

{{ video.get('title') }}

{{ video.get('description') }}

{% endfor %}
{% endblock %}