{% extends "base.html" %} {% block title %}{{ video.title }} — yt-archiver{% endblock %} {% block content %}
{{ video.title }}

{{ video.title }}

Date {{ video.upload_date or '—' }} Duration {{ video.duration|duration }} Views {{ video.view_count|count }} Likes {{ video.like_count|count }} {% if video.series_name %} Series {{ video.series_name }} — Part {{ video.series_part }} {% endif %}
{% if video.tags %}
{% for tag in video.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if video.description %}
Description
{{ video.description }}
{% endif %} {% if series_videos %}

All parts of "{{ video.series_name }}"

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