{% extends "base.html" %} {% block title %}Deleting {{ job.domain_name }}{% endblock %} {% block extra_head %} {% if job.status in ('queued', 'in_progress') %} {% endif %} {% endblock %} {% block content %}

Deleting domain: {{ job.domain_name }}

{% if job.status == 'queued' %}
Job queued - this page refreshes every 60 seconds.
{% elif job.status == 'in_progress' %}
Job in progress - this page refreshes every 60 seconds.
{% elif job.status == 'completed' %}
Done. Domain removed. {% if job.archive_paths %}

Archive files written:

{% endif %}
{% elif job.status == 'failed' %}
Job failed. {{ job.error_message }}
DB rows and the domain were not deleted. Fix the failing node and retry from the Domains page.
{% endif %} {% for n in job.per_node_status %} {% else %} {% endfor %}
NodePhaseArchivedBytes Archive pathError
{{ n.node }} {{ n.phase }} {{ n.archived_count }} {{ n.bytes }} {% if n.archive_path %}{{ n.archive_path }}{% endif %} {{ n.error or '' }}
No node entries yet.
Back to Domains
{% endblock %}