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

Copy 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 %}

Copy 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 %} {% endblock %}