13 lines
297 B
Handlebars
13 lines
297 B
Handlebars
{{#if view.annotations}}
|
|
<div id="annotations">
|
|
{{#each annotation in view.annotations}}
|
|
<div class="annotation">
|
|
<a href={{annotation.url}}>
|
|
{{annotation.status}} {{annotation.providerName}}
|
|
</a>:
|
|
{{annotation.description}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|