{% extends "layout.html" %} {% block title %}Historique - Spotify Downloader{% endblock %} {% block content %}

Historique des téléchargements

{{ downloads|length }} téléchargement(s)
{% if downloads %}
{% for dl in downloads %} {% endfor %}
Statut URL Format Progression Date Actions
{% if dl.status == 'completed' %} {% elif dl.status == 'running' %} {% elif dl.status == 'error' %} {% elif dl.status == 'cancelled' %} {% else %} {% endif %} {{ dl.url[:80] }}{% if dl.url|length > 80 %}...{% endif %} {{ dl.format_type|upper }}
{{ dl.progress }}%
{{ dl.created_at.strftime('%d/%m/%Y') }}
{{ dl.created_at.strftime('%H:%M') }}
{% if dl.status != 'running' %} {% endif %}
{% else %}

Aucun téléchargement pour le moment

Télécharger
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}