{% extends "base.html" %} {% block title %}Vue globale des archives{% endblock %} {% block content %}

Vue globale des archives

Toutes les destinations — local, SSH et instances fédérées

↻ Rafraîchir
{% if not jobs_view %}
Aucun job configuré.
{% endif %} {% for item in jobs_view %}
{{ item.job.name }} {{ item.job.type }} rétention : {{ item.retention_label }} {% set ns = namespace(copies=0) %} {% for loc in item.locations %} {% if not loc.error and loc.archives %}{% set ns.copies = ns.copies + 1 %}{% endif %} {% endfor %} {% set total = item.locations | length %} {{ ns.copies }}/{{ total }} destination{% if total > 1 %}s{% endif %}
{% for loc in item.locations %}
{% if loc.type == "local" %} Local {% elif loc.type == "ssh" %} SSH {% else %} Instance {% endif %} {{ loc.label }} {% if not loc.error %} {{ loc.archives | length }} archive{% if loc.archives | length != 1 %}s{% endif %} {% endif %}
{% if not loc.error %}
{% if loc.type == "ssh" %}{% endif %} {% if loc.type == "instance" %}{% endif %}
{% endif %}
{% if loc.error %}
{{ loc.error }}
{% elif loc.archives %}
{% for arch in loc.archives %} {% endfor %}
Archive Taille Date
{{ arch.name }} {{ arch.size_human }} {{ arch.date_str }}
{% if loc.type == "ssh" %}{% endif %} {% if loc.type == "instance" %}{% endif %}
{% else %}
Aucune archive sur cette destination.
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}