{% extends "layout.html" %} {% block title %}{{title}}{% endblock %} {% block content %}
UGH, THIS LISTING IS NOW MISLEADING AND INCOMPLETE.
There are {{active|length}} active tasks.
Start Time | Description | Runtime |
---|---|---|
{{t.start_time|strftime}} | {{t.desc}} | {{t.runtime|duration}} |
There are no active tasks right now.
{% endif %}There are {{pending|length}} pending tasks.
Submit Time | Description | Wait time |
---|---|---|
{{t.submit_time|strftime}} | {{t.desc}} | {{t.wait_time|duration}} |
There are no pending tasks right now.
{% endif %}There are {{finished|length}} recently-completed tasks.
Finish Time | Description | Wait time | Runtime | Outcome |
---|---|---|---|---|
{{t.finish_time|strftime}} | {{t.desc}} | {{t.wait_time|duration}} | {{t.runtime|duration}} | {{t.outcome_str}} |
There are no recently-completed tasks.
{% endif %} {% endblock %}