travis-web/app/templates/components/jobs-list.hbs
lislis 9af0c24d2f start rewriting tooltips
remove some whitespace
2016-04-04 14:55:54 +02:00

19 lines
489 B
Handlebars

{{#if jobs.length}}
{{#if required}}
<h2 class="section-title">Build Jobs</h2>
{{else}}
<h2 class="section-title">Allowed Failures
<span class="tooltip-jobs" data-tooltip="These are jobs you can allow to fail <br> without failing your entire build">
<span class="icon-question tooltip-trigger"></span>
</span>
</h2>
{{/if}}
<ul class="jobs-list">
{{#each jobs as |job|}}
{{jobs-item job=job repo=repo}}
{{/each}}
</ul>
{{/if}}