{% extends "layout.html" %}
{% block head_content %}
{% endblock %}
{% block content %}
{% if current_list_type == "running" %}
Task ID |
State |
Name |
Coroutine |
Created Loc. |
Since |
Action
|
{% raw %}
{{# tasks}}
{{ task_id }} |
{{ state }} |
{{ name }} |
{{ coro }} |
{{ created_location }} |
{{ since }} |
{{^is_root}}
{{/is_root}}
Trace
|
{{/ tasks}}
{% endraw %}
{% elif current_list_type == "terminated" %}
Task ID |
Name |
Coroutine |
Since Started |
Since Terminated |
Action
|
{% raw %}
{{# tasks}}
{{ task_id }} |
{{ name }} |
{{ coro }} |
{{ started_since }} |
{{ terminated_since }} |
Trace
|
{{/ tasks}}
{% endraw %}
{% endif %}
{% endblock %}