{% extends "base.html" %} {% set active_page = 'jobs' %} {% block title %}Edit Job — {{ job.label or ('Job #' + job.id[:8]) }}{% endblock %} {% block head %} {% endblock %} {% block content %}
Edit Backup Job
Modify configuration and schedule for job details
Back to Details
Target Virtual Machine
{{ job.vm_name }}
Disks target: {% if job.disks_count %}{{ job.disks_count }} selected disk(s){% else %}All disks{% endif %}
Locked Parameter
Configuration Details
Backup Strategy
80–99% transfer bandwidth savings on recurring runs. The first run triggers a full backup to seed state. Subsequent runs download only modified blocks since the last successful snapshot.
Retention Policy
{% if job.retention_type == 'keep_count' %} Only the latest {{ job.retention_value }} successful backups will be kept. Older ones will be deleted automatically. {% elif job.retention_type == 'keep_days' %} Backups older than {{ job.retention_value }} days will be deleted automatically. {% else %} All successful backup copies will be preserved indefinitely. {% endif %}
Schedule
{% set is_weekday = ' ' in (raw_job.monthly_day|string) %} {% set day_str = raw_job.monthly_day|string %} {% set week_num_val = day_str.split(' ')[0] if is_weekday else '1st' %} {% set dow_val = day_str.split(' ')[1] if is_weekday else 'sun' %}
Cancel
{% endblock %} {% block scripts %} {% endblock %}