github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/ui/app/templates/components/job-page/periodic.hbs (about) 1 <JobPage::Parts::Body @job={{this.job}}> 2 <JobPage::Parts::Error @errorMessage={{this.errorMessage}} @onDismiss={{action "clearErrorMessage"}} /> 3 4 <JobPage::Parts::Title @job={{this.job}} @title={{this.job.trimmedName}} @handleError={{action "handleError"}}> 5 <span class="tag is-hollow">periodic</span> 6 <button data-test-force-launch class="button is-warning is-small is-inline" onclick={{action "forceLaunch"}} type="button">Force Launch</button> 7 </JobPage::Parts::Title> 8 9 <div class="boxed-section job-stats"> 10 <div class="boxed-section-body"> 11 <span data-test-job-stat="version"><strong>Version:</strong> {{this.job.version}} | </span> 12 <span data-test-job-stat="priority"><strong>Priority:</strong> {{this.job.priority}} </span> 13 {{#if (and this.job.namespace this.system.shouldShowNamespaces)}} 14 <span data-test-job-stat="namespace"> | <strong>Namespace:</strong> {{this.job.namespace.name}}</span> 15 {{/if}} 16 <span data-test-job-stat="cron"> | <strong>Cron:</strong> <code>{{this.job.periodicDetails.Spec}}</code></span> 17 </div> 18 </div> 19 20 <JobPage::Parts::Summary @job={{this.job}} /> 21 <JobPage::Parts::Children 22 @job={{this.job}} 23 @sortProperty={{this.sortProperty}} 24 @sortDescending={{this.sortDescending}} 25 @currentPage={{this.currentPage}} 26 @gotoJob={{this.gotoJob}} /> 27 </JobPage::Parts::Body>