{% extends "base.html" %} {% block title %} {% if error %} Problem starting jobs {% else %} Restore from backup jobs kicked off {% endif %} {% endblock %} {% block body %}

Restore from backup Job Status

{% if xsrf_error %}
The token used to submit this form has expired.
{% else %} {% if job_list %}
The following jobs were launched by MapReduce.

Each job's status will only be available for as long as the job takes to complete. Once the job is complete, it will remove the status objects from your datastore. Click a job's id for status information.

{% endif %} {% for id in job_list %}

Backup job with id {{id|escape}} kicked off.

{% endfor %} {% if error %}

There was a problem kicking off the jobs. {% if job_list %}The above jobs did start successfully. The error starting the remaining jobs was: {% else %}The error was: {% endif %}

{{error|escape}}
{% endif %} {% endif %} Back to Datastore Admin {% endblock %}