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

{{ app_name }}


{% for t in task_summary %} {% endfor %}
Name Task ID Dependencies 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_time_returned'] | timeformat }}
{% endblock %}