travis-web/assets/scripts/app/templates/annotations/list.hbs
Mathias Meyer 5f46ebbe35 Only show annotations div if there are any.
Without any annotations, the div just makes for some good-looking
whitespace.
2014-05-09 13:18:14 +02:00

13 lines
309 B
Handlebars

{{#if view.annotations}}
<div id="annotations">
{{#each annotation in view.annotations}}
<div class="annotation">
<a {{bind-attr href="annotation.url"}}>
{{annotation.status}} {{annotation.providerName}}
</a>:
{{annotation.description}}
</div>
{{/each}}
</div>
{{/if}}