{% extends "pobsync_backend/base.html" %} {% block title %}Runs | pobsync{% endblock %} {% block content %}

Filters

Clear

Backup Runs

Showing up to 200 of {{ total_count }} run{{ total_count|pluralize }}.

{% for run in runs %} {% empty %} {% endfor %}
Run Host Status Type Created Started Ended Snapshot Review
Run {{ run.id }} {{ run.host.host }} {{ run.status }} {{ run.run_type }} {{ run.created_at }} {{ run.started_at|default:"" }} {{ run.ended_at|default:"" }} {% if run.snapshot %} {{ run.snapshot.dirname }} {% elif run.snapshot_path %} {{ run.snapshot_path }} {% else %} none {% endif %} {% if run.reviewed_at %} reviewed {% elif run.status == "failed" or run.status == "warning" %}
needed
{% csrf_token %}
{% else %} none {% endif %}
No runs matched the current filter.
{% endblock %}