12 lines
243 B
Django/Jinja
12 lines
243 B
Django/Jinja
/*
|
|
{% if backup_path_exclude is defined %}
|
|
{% for item in backup_path_exclude %}
|
|
{{ item.value }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if backup_path_include is defined %}
|
|
{% for item in backup_path_include %}
|
|
!{{ item.path }}
|
|
{% endfor %}
|
|
{% endif %}
|