{{ t('Cronjobs') }} {{ t('overview') }}
@if (!cronjobs) { } @if (cronjobs) { @for (cronjob of cronjobs.cronjobs; track cronjob) { }
{{ t('Task') }} {{ t('Plugin') }} {{ t('Interval') }} {{ t('Last scheduled') }} {{ t('Last execution time') }} {{ t('Is currently running') }} {{ t('Enabled') }} {{ t('Priority') }}
{{ cronjob.Cronjob.task }} {{ cronjob.Cronjob.plugin }} {{ cronjob.Cronjob.interval }} {{ cronjob.Cronschedule.last_scheduled_usertime }} {{ cronjob.Cronschedule.last_execution_time_human }} @if (!cronjob.Cronschedule.is_running) { {{ t('No') }} } @if (cronjob.Cronschedule.is_running) { {{ t('Yes') }} } @if (cronjob.Cronjob.enabled) { } @if (!cronjob.Cronjob.enabled) { } @if (cronjob.Cronjob.priority === CronjobPriorities.Low) { {{ t('Low') }} } @if (cronjob.Cronjob.priority === CronjobPriorities.High) { {{ t('High') }} }
@if (cronjob.Cronjob.id) { }
} @if (cronjobs && cronjobs.cronjobs.length === 0) { }
 
{{ t('Add Cronjob') }}
@if (CronjobPost) {
{{ plugin }}
{{ task }}
{{ t(' Cronjob schedule interval in minutes') }}
{{ priority }}
{{ t('"low" is the default priority and recommended for all cronjobs especially for long running tasks like generating reports.') }}
{{ t('"high" is recommended for cronjobs that should be executed as soon as possible. For example, sending emails.') }}
{{ t('Determine if this cronjob should be executed. ') }}
}
{{ t('Edit Cronjob') }}
@if (CronjobPost) {
{{ plugin }}
{{ task }}
{{ t(' Cronjob schedule interval in minutes') }}
{{ priority }}
{{ t('"low" is the default priority and recommended for all cronjobs especially for long running tasks like generating reports.') }}
{{ t('"high" is recommended for cronjobs that should be executed as soon as possible. For example, sending emails.') }}
{{ t('Determine if this cronjob should be executed. ') }}
}