You repeat the same sequence of tasks over and over again?
If so, define
a task to simplify running the sequence and avoid mistakes.
You can also schedule the execution automatically at specific times.
{% else %}
{% if not widget %}
{% trans "Run a sequence of tasks, and schedule it to run automatically." %}
{% endif %}
{% if not widget %}
{% trans "name"|capfirst %}
{% trans "next scheduled run"|capfirst %}
{% else %}
{% trans "name"|capfirst %}
{% trans "started"|capfirst %}
{% trans "finished"|capfirst %}
{% trans "status"|capfirst %}
{% endif %}
{% for schedule in schedules %}
{% if perms.execute.add_scheduledtask %}
{% for t in schedule.data.tasks %}
{% endfor %}
{% if not widget %}
{% endif %}
{% endif %}
{% endfor %}
{% if perms.execute.add_scheduledtask and not widget %}
{% endif %}
{% endif %}