{% extends "base.html" %} {% block title %}Archives{% endblock %} {% block content %}

Archives

{{ items | length }} archive{{ 's' if items | length != 1 }}
{% if not items %}

Aucune archive sur ce serveur.

Les archives apparaissent ici après l'exécution d'un job de sauvegarde.

{% else %} {# ── Filtres ─────────────────────────────────────────────────────── #}
{% for item in items %} {% endfor %}
Archive Type Job Date Statut Taille Actions
{{ item.name }} {% if item.type %} {{ item.type }} {% else %} {% endif %} {% if item.job_id %} {{ item.job_name }} {% else %} {{ item.job_name }} {% endif %} {% if item.run_at %}{{ item.run_at.strftime('%d/%m/%Y %H:%M') }} {% else %}{% endif %} {% if item.last_status == 'success' %} ✓ succès {% elif item.last_status == 'error' %} ✗ erreur {% elif item.last_status == 'running' %} ⟳ en cours {% else %} {% endif %} {{ item.size_human }}
↩ Restaurer {% if instances %}
{% endif %}
{% endif %} {% endblock %}