{% extends "base.html" %} {% block title %}Paramètres{% endblock %} {% block content %}

Paramètres

{# ── Onglets ─────────────────────────────────────────────────────── #}
{# ══════════════════ PANNEAU : DESTINATIONS ═══════════════════════ #}
{% if not destinations %}

Aucune destination configurée.

Les archives sont conservées localement uniquement.

Configurer une première destination →
{% else %}
{% for dest in destinations %}
{{ dest.name }} {% if dest.enabled %} actif {% else %} inactif {% endif %}

{{ dest.user }}@{{ dest.host }}:{{ dest.port }} → {{ dest.remote_path }}

{% if dest.jobs %}

Utilisée par : {{ dest.jobs | map(attribute='name') | join(', ') }}

{% endif %}
Éditer
{% endfor %}
{% endif %}
{# /pane-destinations #} {# ══════════════════ PANNEAU : INSTANCES ══════════════════════════ #} {# /pane-instances #} {# ══════════════════ PANNEAU : CONFIGURATION ══════════════════════ #} {# /pane-config #} {% endblock %}