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

{{ app_name }}


{% for t in task_summary %} {% endfor %}
Name Task_ID Dependencies Executor Started Completed
{{ t.task_func_name }} {{ t['task_id'] }} {% if t['task_depends'] %} {% for id in t['task_depends'].split(",") %} {{ id }} {% endfor %} {% else %} None {% endif %} {{ t['task_executor'] }} {{ t['task_time_submitted'] }} {{ t['task_time_returned'] }}
{% endblock %}