{% 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['time_began'], workflow_details['time_completed']) | durationformat }}
  • Owner: {{ workflow_details['user'] }}
  • Host: {{ workflow_details['host'] }}
  • Run directory: {{ workflow_details['rundir'] }}
  • Number of completed tasks: {{ workflow_details['tasks_completed_count'] }}
  • Number of failed tasks: {{ workflow_details['tasks_failed_count'] }}
App Summary
{% for (_, t) in task_summary.iterrows() %} {% endfor %}
Name Count
{{ t['task_func_name'] }} {{ t.frequency }}
View workflow DAG -- colored by apps
View workflow DAG -- colored by task states
View workflow resource usage {{ task_gantt | safe }} {{ task_per_app |safe }} {% endblock %}