{% extends "template.html" %} {% block content %}

Historique des vidéos YouTube

Retour
{% if msg %}
{{ msg }}
{% endif %}

Historique des vidéos détectées par le bot. Les vidéos non notifiées peuvent être envoyées manuellement sur Discord.

{{ total }} vidéo{{ 's' if total > 1 else '' }} au total.

Toutes Vidéos Shorts
{% if history %}
{% for entry in history %}
{% if entry.thumbnail %} {% endif %}
{{ entry.title or 'Sans titre' }}
{% if entry.is_short %} Short {% endif %} {% if entry.notified %} Notifié {% else %} Non notifié {% endif %}
{{ entry.channel_name or 'Inconnu' }} {% if entry.published_at %} {{ entry.published_at[:10] }} {% endif %} {% if notification_map.get(entry.notification_id) %} {{ notification_map[entry.notification_id].channel_id }} {% endif %}
Voir sur YouTube
{% endfor %}
{% if total_pages > 1 %}
{% if page > 1 %} Précédent {% endif %} Page {{ page }} / {{ total_pages }} {% if page < total_pages %} Suivant {% endif %}
{% endif %} {% else %}

Aucune vidéo détectée pour le moment. L'historique se remplira au fur et à mesure des vérifications.

{% endif %} {% endblock %}