{% extends "base.html" %} {% block content %}
Events scheduled for this scope.
No timers yet. A timer emits an event carrying its message, either once or on a repeat.
{% else %}| Message | Schedule | Status | Next Run | Runs | {% if can_manage %}Actions | {% endif %}
|---|---|---|---|---|---|
| {{ timer.schedule }} | {% if timer.status == "active" %} Active {% elif timer.status == "paused" %} Paused {% elif timer.status == "completed" %} Completed {% else %} Cancelled {% endif %} | {% if timer.next_run_at %} {{ timer.next_run_at }} {% else %} — {% endif %} | {{ timer.run_count }} | {% if can_manage %}{% endif %} |
Emit a scoped event once or on a repeating schedule.
{{ timer.schedule }}