{% extends "base.html" %} {% block title %}Downloads - YottoB{% endblock %} {% block content %}
{% if videos %}
{% for video in videos %}
{% if video.thumbnail_url %} {{ video.title }} {% else %}
No thumbnail
{% endif %}

{{ video.title }}

{{ video.channel.title }}

Published: {{ video.published_at.strftime('%Y-%m-%d') }} {% if video.download_started_at %} Started: {{ video.download_started_at.strftime('%Y-%m-%d %H:%M') }} {% endif %} {% if video.download_completed_at %} Completed: {{ video.download_completed_at.strftime('%Y-%m-%d %H:%M') }} {% endif %}
{% if video.download_status.value == 'completed' %} Completed {% if video.file_size %} {{ (video.file_size / 1024 / 1024) | round(2) }} MB {% endif %} {% elif video.download_status.value == 'downloading' %} Downloading... {% elif video.download_status.value == 'failed' %} Failed {% if video.download_error %}

{{ video.download_error }}

{% endif %} {% else %} Pending {% endif %}
{% if video.download_status.value == 'pending' or video.download_status.value == 'failed' %}
{% elif video.download_status.value == 'completed' %} Watch Download File {% endif %}
{% endfor %}
{% else %}

No Videos Yet

Subscribe to channels to see videos here.

Add Channel
{% endif %}
{% endblock %}