package app type PluginJobsPageData struct { JobType string Jobs []interface{} StateFilter string } templ PluginJobsMonitoring(data PluginJobsPageData) {

Jobs

Back
Recent Jobs
if len(data.Jobs) == 0 {
No jobs found
} else {
for i := 0; i < len(data.Jobs); i++ { }
Job ID State Created Actions
job_id PENDING 2024-01-01 12:00:00
}
}