No cron jobs found
Your crontab appears to be empty.
Run crontab -e to add jobs.
←
Select a job to view details,
manage logging, and read logs.
–
–
–
–
No ${currentFilter==='all'?'':''+currentFilter+' '}jobs found.
`; document.getElementById('empty-state').style.display='none'; updateBulkBar(); return; }
document.getElementById('empty-state').style.display='none';
list.innerHTML='';
visible.forEach(job=>list.appendChild(makeJobCard(job)));
selectedIds.forEach(id=>{ if(!visible.find(j=>j.id===id)) selectedIds.delete(id); });
updateBulkBar();
if(selectedId!==null&&!visible.find(j=>j.id===selectedId)){
selectedId=null;
document.getElementById('detail-empty').style.display='flex';
document.getElementById('detail-content').style.display='none';
}
}
function makeJobCard(job){
const card=document.createElement('div');
card.className='job-card'+(job.id===selectedId?' selected':'');
card.dataset.id=job.id;
card.onclick=(e)=>{ if(!e.target.closest('.card-actions')&&!e.target.closest('.job-check-ui')&&!e.target.closest('.job-checkbox')) selectJob(job.id); };
const dotClass=job.running?'status-running':job.status==='active'?'status-active':'status-disabled';
const tags=[];
tags.push(`