|
585
|
1 |
{{! template for the annotation list widget }} |
|
|
2 |
<div class='Ldt-AnnotationsListWidget'> |
|
|
3 |
<!-- ugly div because we want to have a double border --> |
|
|
4 |
<div class='Ldt-Annotation-DoubleBorder'> |
|
|
5 |
<ul> |
|
|
6 |
{{#annotations}} |
|
830
|
7 |
<li id='Ldt-Annotation-li-{{id}}' class='Ldt-TraceMe'> |
|
717
|
8 |
{{! if the url is not present, it means that the annotation exists |
|
|
9 |
in the current project }} |
|
697
|
10 |
{{^url}} |
|
680
|
11 |
<a href='#id={{id}}'> |
|
697
|
12 |
{{/url}} |
|
717
|
13 |
{{! otherwise link to url }} |
|
713
|
14 |
{{#url}} |
|
697
|
15 |
<a href='{{url}}#id={{id}}'> |
|
713
|
16 |
{{/url}} |
|
588
|
17 |
<div style='overflow: auto; margin-top: 5px; margin-bottom: 5px;'> |
|
|
18 |
<div class='Ldt-AnnotationsList-Caption'> |
|
|
19 |
</div> |
|
585
|
20 |
<div class='Ldt-AnnotationsList-Duration'>{{begin}} - {{end}}</div> |
|
|
21 |
<div class='Ldt-AnnotationsList-Title'>{{title}}</div> |
|
|
22 |
<div class='Ldt-AnnotationsList-Description'>{{desc}}</div> |
|
|
23 |
</div> |
|
|
24 |
</a> |
|
|
25 |
</li> |
|
|
26 |
{{/annotations}} |
|
|
27 |
</ul> |
|
|
28 |
</div> |
|
|
29 |
</div> |