{% extends "base.html" %} {% from "partials/video_card.html" import video_card %} {% from "partials/pagination.html" import pagination %} {% block title %}{{ playlist_title or "Playlist" }} - YouTube Proxy{% endblock %} {% block content %}
{% if error %}

{{ error }}

{% endif %}

{{ playlist_title or "Playlist" }}

{% if playlist_channel %}

{% if channel_handle %} {{ playlist_channel }} {% else %} {{ playlist_channel }} {% endif %}

{% endif %}

{{ total }} video{{ "s" if total != 1 else "" }} {% if total_pages > 1 %} · Page {{ page }} / {{ total_pages }}{% endif %}

{% if playlist_id %} YouTube {% endif %}
{% if items %}
{% for item in items %} {% set global_idx = (page - 1) * items|length + loop.index0 %}
{{ (page - 1) * (items|length) + loop.index }}
{{ item.title }}

{{ item.title }}

{% if item.channel %}

{{ item.channel }}

{% endif %} {% if item.duration %}

{{ item.duration }}

{% endif %}
{% endfor %}
{{ pagination(base_url="/playlist?list=" ~ playlist_id, page=page, total_pages=total_pages) }} {% elif not error %}

No videos found

This playlist appears to be empty or unavailable.

{% endif %}
{% endblock %}