{% extends load_base %} {% load i18n %} {% block javascript %} {% endblock %} {% block base_nav %}{% include "gui/node/navigation.html" with li_backups="active" %}{% endblock %} {% block base_content %} {% include "gui/vm/backup_update_modal.html" with mod_source=update_mod_source mod_form="gui/node/backup_form.html" %} {% include "gui/vm/backup_delete_modal.html" %} {% include "gui/vm/backup_restore_modal.html" %}
{% if not node.is_online %}
{% trans "Unavailable backups" %}

{% trans "Backups are not visible or accessible, because the compute node is not in online state. Existing backups are kept untouched, but new backups cannot be created. Full backup control will be possible as soon as the compute node returns to online state." %}

{% endif %}
{% if vm %}
{{ node.hostname }} › {{ vm.alias }} › {% trans "backups" %}
{% include "gui/node/backup_list.html" %}
{% elif no_vm %}
{{ node.hostname }} › {% trans "(no server)" %} › {% trans "backups" %}
{% include "gui/node/backup_list_novm.html" %}
{% else %}
{{ node.hostname }} › {% trans "backups" %}
{% include "gui/node/backup_list_all.html" %}
{% endif %}
{% endblock %}