{% extends "layout.html" %} {% block content %}

{{ workflow_details['workflow_name'] }}


Workflow Summary
  • Started: {{ workflow_details['time_began'] | timeformat}}
  • Completed: {{ workflow_details['time_completed'] | timeformat }}
  • Workflow duration: {{ workflow_details['workflow_duration'] | timeformat }}
  • Owner: {{ workflow_details['user'] }}
  • host: {{ workflow_details['host'] }}
  • rundir: {{ workflow_details['rundir'] }}
  • tasks_failed_count: {{ workflow_details['tasks_failed_count'] }}
  • tasks_completed_count: {{ workflow_details['tasks_completed_count'] }}
App Summary
{% for t in task_summary %} {% endfor %}
Name Count
{{ t.task_func_name }} {{ t.frequency }}
View workflow DAG -- colors grouped by apps
View workflow DAG -- colors grouped by task states
View workflow resource usage {{ task_gantt | safe }} {{ task_per_app |safe }} {% endblock %}