{% extends 'base.html' %} {% block scripts %} {{ super() }} {% endblock %} {% block onload %}dgenies.status.init('{{ status }}');{% endblock %} {% block content %}

Job name: {{ id_job }}

{% if status == "started" %}

Your job has started.
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "starting" %}

Your job is starting...
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "scheduled-cluster" %}

Your job has been scheduled on the cluster.
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "submitted" or status == "waiting" %}

Your job has been submitted.
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "getfiles" %}

Your job has been submitted. We are retrieving data...
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "getfiles-waiting" %}

Your job has been submitted. We are retrieving data... (waiting for download...)
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "merging" %}

Your map is done. We are preparing files for visualisation...
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "preparing" or status == "preparing-cluster" %}

We are preparing data...
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "prepare-scheduled" %}

We are preparing data... [scheduled]
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "prepared"%}

Your data are ready to be processed. Your job will be scheduled soon...
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "scheduled" %}

Your job has been shedulded. It will start soon...
You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% elif status == "success" %}

Your job was completed successfully.
Please click here to show results.

Time elapsed: {{ time_elapsed }}

{% elif status == "no-match" %}

Your job is done.
Sorry, we did not find any match between your query and your target.

{% elif status == "fail" %}

{% if error == "" %} Your job has failed. Please try again.
If the problem persists, please contact the support. {% else %} {{ error | safe }} {% endif %}

{% else %}

This job does not exists!

{% endif %}

Submitted

Prepared

Scheduled

Started

Merging

Done

{% endblock %}