{% extends "base.html" %} {% block title %}Recurring Jobs - Control Plane{% endblock %} {% block content %}
{% if recurring_tasks|length > 0 %} {% for task in recurring_tasks %}
{{ task.key }}
{{ task.class_name }}
{% if task.description %}
{{ task.description }}
{% endif %}
Schedule
{{ task.schedule }}
Queue
{{ task.queue_name }} ยท priority {{ task.priority }}
Last run
-
Next run
-
{% endfor %} {% else %}
No recurring tasks configured
{% endif %}
{% endblock %}