{% extends "admin/base_site_mako.html" %} {% load order_by %} {% if not is_popup %} {% block block_breadcrumbs %} {% endblock %} {% endif %} {% block block_content %}
Name User Start End Status
{{w.name}} {{w.user.name}} {{w.start_time}} {{w.end_time}} {{w.status}} {% autoescape off %}{{w.edit_link}}{% endautoescape %}

{% for job in jobs_by_order %} {% if job.task_set.all %} {% for task in job.task_set.all %} {% for stagein in task.stagein_set.all|order_by:"order" %} {% endfor %} {% endfor %} {% endif %} {% endfor %}
Order Status Start End Command
{{job.order}} {{job.status}} {{job.start_time}} {{job.end_time}} {{job.command| force_escape }} {% autoescape off %}{{job.edit_link}}{% endautoescape %}
{{task.status}} Task: {{task.command}} {% autoescape off %}{{ task.edit_link }}{% endautoescape %}
{% autoescape off %}{{ task.link_to_syslog }} {% endautoescape %}
{% autoescape off %}{{ task.link_to_json }} {% endautoescape %}
Src: {{stagein.src}}
Dst: {{stagein.dst}}
{% autoescape off %}{{ stagein.edit_link }}{% endautoescape %}



Workflow Json

{% if w.json %}
{{workflow_json}}
{% endif %}
{% endblock %}