{% extends "pobsync_backend/base.html" %} {% block title %}Schedules | pobsync{% endblock %} {% block content %}

Filters

Clear

Configured Schedules

Showing up to 200 of {{ total_count }} schedule{{ total_count|pluralize }}. Times use {{ scheduler_timezone }}.

{% for row in schedule_rows %} {% with schedule=row.schedule %} {% endwith %} {% empty %} {% endfor %}
Host Expression Enabled Next Run Prune Last Status Last Started Last Finished Actions
{{ schedule.host.host }} {{ schedule.cron_expr }} {{ schedule.enabled|yesno:"enabled,disabled" }} {% if row.next_run_at %} {{ row.next_run_at|date:"Y-m-d H:i T" }} {% else %} none {% endif %} {{ schedule.prune|yesno:"enabled,disabled" }} {% if schedule.prune %}
max {{ schedule.prune_max_delete }}{% if schedule.prune_protect_bases %}, protects bases{% endif %}
{% endif %}
{% if schedule.last_status %}{{ schedule.last_status }}{% else %}none{% endif %} {{ schedule.last_started_at|default:"" }} {{ schedule.last_finished_at|default:"" }} Edit
No schedules matched the current filter.
{% endblock %}