{% extends 'material_base.html' %} {% block title %}Orphaned videos{% endblock %} {% block description %}Videos in the archive which do not have a permanent channel linked.{% endblock %} {% block content %}

Videos lising page

Orphaned videos

Videos in the archive which do not have a permanent channel linked. There is a high chance that the videos are manually downloaded. Sorted by last added.

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

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

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

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

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

{% endfor %}
{% endblock %}