{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Status

Sync Status: {% if sync_running %}Running{% else %}Idle{% endif %}
Channels Configured: {{ stats|length }}
Cookies: {% if has_cookies %}Configured{% else %}Not Set{% endif %}
Schedule: {{ settings.sync_schedule }}

Configuration

Max Quality: {{ settings.max_quality }}p
Sleep Interval: {{ settings.sleep_interval }}s
Timezone: {{ settings.timezone }}

Channels

{% if stats %}
{% for channel in stats %} {% endfor %}
Channel Name Videos Total Size Last Sync
{{ channel.name }} {{ channel.video_count }} {{ channel.total_size }} {{ channel.last_sync }}
{% else %}

No channels configured.

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