{% extends "admin/base.html" %} {% block title %}Schedules — cmdop admin{% endblock %} {% block content %} {% from 'admin/components/ui.html' import card, input, pagination, tooltip, page_header %}
{{ page_header( 'Schedules', 'Cron jobs that dispatch shell commands to fleet machines.', help_anchor='schedules', actions=[ {'label': 'Refresh', 'kind': 'secondary', 'icon': 'refresh-cw', 'attrs': '@click="load()"'}, {'label': 'New schedule', 'kind': 'primary', 'icon': 'plus', 'attrs': '@click="openCreate()"'}, ] ) }} {% call card() %}
Name Cron {{ tooltip("Schedule format: minute hour day-of-month month day-of-week. Try crontab.guru for help.") }} Target Last run Next run Status Actions
Loading schedules…

Couldn't load schedules.

No schedules yet

Click + New schedule to create one.

{{ pagination('pagination') }} {% endcall %}
{% endblock %}