{% extends "raw.html" %} {% block title %}Jobs: {{config.APP_NAME}}{% endblock %} {% block cdn_css %} {{cdn_css('datatables')}} {{cdn_css('datatables-select')}} {% endblock %} {% block css %} {% endblock css %} {% import "job-frag.html" as macros %} {% block content %}

Notice:

{% if not is_running %} {% else %}

The current job scheduler only wakes every 60 seconds to check for new jobs to run. Either refresh this page or press this button if you are expecting your job to be running.

{% endif %}

Jobs Running


{{ macros.jobtable(running, oktokill) }}

Jobs Queued


{{ macros.jobtable(queued, oktokill) }}

Jobs Done


{{ macros.jobtable(finished, oktokill) }}
{% endblock content %} {% block js %} {{super()}} {{cdn_js('datatables')}} {{cdn_js('datatables-select')}} {# https://datatables.net/reference/event/error #} {% endblock js %}