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

Server Tasks

UGH, THIS LISTING IS NOW MISLEADING AND INCOMPLETE.

Active tasks

{% if active %}

There are {{active|length}} active tasks.

{% for t in active %} {% endfor %}
Start Time Description Runtime
{{t.start_time|strftime}} {{t.desc}} {{t.runtime|duration}}
{% else %}

There are no active tasks right now.

{% endif %}

Pending tasks

{% if pending %}

There are {{pending|length}} pending tasks.

{% for t in pending %} {% endfor %}
Submit Time Description Wait time
{{t.submit_time|strftime}} {{t.desc}} {{t.wait_time|duration}}
{% else %}

There are no pending tasks right now.

{% endif %}

Recent completed tasks

{% if finished %}

There are {{finished|length}} recently-completed tasks.

{% for t in finished %} {% endfor %}
Finish Time Description Wait time Runtime Outcome
{{t.finish_time|strftime}} {{t.desc}} {{t.wait_time|duration}} {{t.runtime|duration}} {{t.outcome_str}}
{% else %}

There are no recently-completed tasks.

{% endif %} {% endblock %}