You've already forked proxmox-backup
ea052ef0b9
Co-authored-by: Copilot <copilot@github.com>
12 lines
232 B
Django/Jinja
12 lines
232 B
Django/Jinja
/*
|
|
{% if backup_path_exclude is defined %}
|
|
{% for item in backup_path_exclude %}
|
|
{{ item }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if backup_path_include is defined %}
|
|
{% for item in backup_path_include %}
|
|
!{{ item }}
|
|
{% endfor %}
|
|
{% endif %}
|