{% extends "base.html" %} {% block title %}Channels - YottoB{% endblock %} {% block content %}
{% if channels %}
{% for channel in channels %}

{{ channel.title }}

{{ channel.rss_url }}

{{ channel.video_entries|length }} videos Last updated: {{ channel.last_fetched_at.strftime('%b %d, %Y %I:%M %p') if channel.last_fetched_at else 'Never' }}
View Videos
{% endfor %}
{% else %}

No channels subscribed

Add your first YouTube channel to start downloading videos

Add Channel
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}