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

Destinations de transfert

+ Nouvelle destination
{% 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 %} {% endblock %}