open-nomad/ui/app/templates/components/job-deployments-stream.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
464 B
Handlebars
Raw Normal View History

{{#each this.annotatedDeployments key="deployment.id" as |record|}}
2017-09-19 14:47:10 +00:00
{{#if record.meta.showDate}}
<li data-test-deployment-time class="timeline-note">
2017-09-19 14:47:10 +00:00
{{#if record.deployment.version.submitTime}}
{{format-date record.deployment.version.submitTime}}
2017-09-19 14:47:10 +00:00
{{else}}
Unknown time
{{/if}}
</li>
{{/if}}
<li data-test-deployment class="timeline-object">
<JobDeployment @deployment={{record.deployment}} />
2017-09-19 14:47:10 +00:00
</li>
{{/each}}