{% 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.') }}

{{ 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) }}
{% endblock %}