{% extends "master.html" %}
{% block title %} - Overview{% endblock %}
{% block body %}
{% if failed_warning %}
Jobs in Progress
{% for job_type in g.job_types %}
{{ job_type }}
Job ID |
Phase |
{% for job in g.jobs[job_type] %}
{{ job }} |
Mapping |
{% else %}
Nothing happening here right now... |
{% endfor %}
{% else %}
Job ID |
Phase |
Nothing happening here right now... |
{% endfor %}
click a job type to view its activity
Mappers
Name |
Working on |
{% for mapper, status in g.mappers.iteritems() %}
{{ mapper }} |
{% if status %}
Processing job {{ status['job_id'] }} |
{% else %}
Waiting for a new job... |
{% endif %}
{% else %}
No mappers registered so far... |
{% endfor %}
click a mapper to view its activity
{% endblock %}