{% extends "base.html" %} {% block title %}{{ 'Éditer' if job else 'Nouveau job' }}{% endblock %} {% block content %}

{{ 'Éditer « ' + job.name + ' »' if job else 'Nouveau job de sauvegarde' }}

{# ── Infos générales ── #}

Général

{# Type-specific config : ynh_app #}
{% set core_only = (job.config_json | fromjson).get('core_only', False) if job and job.config_json else False %}
{# Type-specific config : ynh_system (rien de spécifique) #}
{# ── Planification ── #}

Planification

Format : minute heure jour mois jour_semaine — ex: 0 3 * * * = tous les jours à 3h · 0 3 * * 1 = chaque lundi à 3h

{# ── Rétention ── #}

Rétention

{# ── Options ── #}
{# ── Actions ── #}
Annuler
{% endblock %}