{% extends "settings/_layout.html" %} {% block settings_title %}Jobs{% endblock %} {% block settings_content %} {% if request.query_params.get('started') %}
Started in the background. Watch the runs table below (it refreshes on its own). If the pipeline is already busy, this run shows as skipped.
{% endif %}

Maintenance jobs

{% for job in maintenance_jobs %} {% endfor %}
JobStatusNext run
{{ job.label }}
{% if job.description %}
{{ job.description }}
{% endif %}
{% if job.enabled %}enabled{% else %}disabled{% endif %} {{ job.next_run }}

Playlist syncs are triggered from each playlist's own page.

Recent runs

{% include "jobs/_runs_table.html" %}
JobStatusTriggered bySummary
{% endblock %}