2020-07-09 20:19:07 +00:00
|
|
|
<JobPage::Parts::Body @job={{this.job}}>
|
|
|
|
<JobPage::Parts::Error @errorMessage={{this.errorMessage}} @onDismiss={{action "clearErrorMessage"}} />
|
2018-04-19 17:18:16 +00:00
|
|
|
|
2020-07-09 20:19:07 +00:00
|
|
|
<JobPage::Parts::Title @job={{this.job}} @title={{this.job.trimmedName}} @handleError={{action "handleError"}}>
|
2018-01-25 22:19:18 +00:00
|
|
|
<span class="tag is-hollow">periodic</span>
|
2020-07-09 17:30:11 +00:00
|
|
|
<button data-test-force-launch class="button is-warning is-small is-inline" onclick={{action "forceLaunch"}} type="button">Force Launch</button>
|
2020-06-01 19:03:56 +00:00
|
|
|
</JobPage::Parts::Title>
|
2018-01-25 22:19:18 +00:00
|
|
|
|
|
|
|
<div class="boxed-section job-stats">
|
|
|
|
<div class="boxed-section-body">
|
2020-07-09 20:19:07 +00:00
|
|
|
<span data-test-job-stat="version"><strong>Version:</strong> {{this.job.version}} | </span>
|
|
|
|
<span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} </span>
|
|
|
|
{{#if (and this.job.namespace this.system.shouldShowNamespaces)}}
|
|
|
|
<span data-test-job-stat="namespace"> | <strong>Namespace:</strong> {{this.job.namespace.name}}</span>
|
2018-01-25 22:19:18 +00:00
|
|
|
{{/if}}
|
2020-07-09 20:19:07 +00:00
|
|
|
<span data-test-job-stat="cron"> | <strong>Cron:</strong> <code>{{this.job.periodicDetails.Spec}}</code></span>
|
2018-01-25 22:19:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-07-09 20:19:07 +00:00
|
|
|
<JobPage::Parts::Summary @job={{this.job}} />
|
2020-06-01 19:03:56 +00:00
|
|
|
<JobPage::Parts::Children
|
2020-07-09 20:19:07 +00:00
|
|
|
@job={{this.job}}
|
|
|
|
@sortProperty={{this.sortProperty}}
|
|
|
|
@sortDescending={{this.sortDescending}}
|
|
|
|
@currentPage={{this.currentPage}}
|
|
|
|
@gotoJob={{this.gotoJob}} />
|
2020-06-01 19:03:56 +00:00
|
|
|
</JobPage::Parts::Body>
|