{% extends "base.html" %} {% block title %}{% if series_name %}{{ series_name }}{% else %}Series{% endif %} — yt-archiver{% endblock %} {% block content %} {% if series_name %}

{{ series_name }}

{{ videos|length }} part{{ 's' if videos|length != 1 else '' }}

{% for v in videos %} {% endfor %}
PartTitleDurationDate
{{ v.series_part }} {{ v.title }} {{ v.duration|duration }} {{ v.upload_date or '—' }} Watch ↗

← All series

{% else %}

Multi-part Series

{% if not series_list %}

No multi-part series detected yet. Series are auto-detected from titles containing "Part N".

{% else %}
{% for s in series_list %} {% endfor %}
SeriesPartsFirst Upload
{{ s.series_name }} {% if s.first_part == s.last_part %} {{ s.part_count }} {% else %} {{ s.part_count }} (pt {{ s.first_part }}–{{ s.last_part }}) {% endif %} {{ s.first_date or '—' }}
{% endif %} {% endif %} {% endblock %}