changedetectionio/blueprint/backups/templates/backup_restore.html
{% extends 'base.html' %} {% block content %} {% from '_helpers.html' import render_field, render_checkbox_field %}
{% if restore_running %}
{{ _('A restore is running!') }}
{% endif %}
{{ _('Restore a backup. Must be a .zip backup file created on/after v0.53.1 (new database layout).') }}
{{ _('Note: This does not override the main application settings, only watches and groups.') }}
{{ _('Max upload size: %(upload)s MB, Max decompressed size: %(decomp)s MB', upload=max_upload_mb, decomp=max_decompressed_mb) }}
{{ render_checkbox_field(form.include_groups) }} {{ _('Include all groups found in backup?') }}
{{ render_checkbox_field(form.include_groups_replace_existing) }} {{ _('Replace any existing groups of the same UUID?') }}
{{ render_checkbox_field(form.include_watches) }} {{ _('Include all watches found in backup?') }}
{{ render_checkbox_field(form.include_watches_replace_existing) }} {{ _('Replace any existing watches of the same UUID?') }}
{{ render_field(form.zip_file) }}
{{ _('Restore backup') }}
{% endblock %}