{% extends "django_recovery/base.html" %} {% block content %}

Recovery — Database Backups

{% if message %}
{{ message }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
{% csrf_token %} {% if active %}A job is currently running…{% endif %}

Snapshots

{% for snapshot in snapshots %} {% empty %} {% endfor %}
Snapshot Time Tags Paths Actions
{{ snapshot.short_id }} {{ snapshot.time }} {{ snapshot.tags|join:", " }} {{ snapshot.paths|join:", " }}
Restore…
{% csrf_token %}

This OVERWRITES the selected database.

Remove…
{% csrf_token %}

Permanently deletes this snapshot.

No snapshots yet.

Recent jobs

{% for job in recent_jobs %} {% empty %} {% endfor %}
Job Status Database Created Link
#{{ job.pk }} {{ job.job_type }} {{ job.get_status_display }} {{ job.database_alias }} {{ job.created_at }} view
No jobs yet.
{% endblock %}