{% extends "base.html" %} {% block title %}Backups - Hop3 Dashboard{% endblock %} {% block content %}

Backups

Browse and manage application backups.

{# Outcome of restore/delete. Without this the two mutations redirected here identically whether they succeeded or failed — a silently failed restore looked exactly like a successful one. #} {% if request.query_params.get('success') == 'true' %}

Action Successful!

{{ request.query_params.get('message', 'Done.') }}

{% elif request.query_params.get('success') == 'false' %}

Failed to {{ request.query_params.get('action', 'complete the action') }} backup

{% if request.query_params.get('error') %}
{{ request.query_params.get('error') }}
{% endif %}
{% endif %} {% if backups %}
{% for backup in backups %} {% endfor %}
Backup ID Application Created Size Services Actions
{{ backup.backup_id }} {{ backup.app_name }} {{ backup.created }} {{ backup.size }} {% if backup.addons_count > 0 %} {{ backup.addons_count }} addon(s) {% else %} No addons {% endif %}
Info
{% else %}

No backups yet

Create your first backup from an application detail page.

{% endif %}
{% endblock %}