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

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.

{% for id in job_list %}

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

{% endfor %} {% endif %} {% if task_list %}
The followings tasks were submitted and will initiate MapReduce jobs.

Once job's are created their 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 %} {% if error %}

There was a problem kicking some off the jobs/tasks:

{{error|escape}}

{% endif %} {% endif %} Back to Datastore Admin {% endblock %}