src/templates/annotationsListWidget.html
author veltr
Fri, 20 Apr 2012 19:13:11 +0200
branchnew-model
changeset 874 38b65761a7d5
parent 870 2c025db10a10
permissions -rw-r--r--
TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
585
44a4a4a179c1 first version of the AnnotationListWidget.
hamidouk
parents:
diff changeset
     1
{{! template for the annotation list widget }}
44a4a4a179c1 first version of the AnnotationListWidget.
hamidouk
parents:
diff changeset
     2
<div class='Ldt-AnnotationsListWidget'>
833
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
     3
    <ul class='Ldt-AnnotationsList-ul'>
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
     4
        {{#annotations}}
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
     5
        <li id='Ldt-Annotation-li-{{id}}' class='Ldt-AnnotationsList-li Ldt-TraceMe'>
874
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
     6
            <div class='Ldt-AnnotationsList-ThumbContainer'>
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
     7
                <a href='{{url}}'>
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
     8
                    <img class='Ldt-AnnotationsList-Thumbnail' src='{{thumbnail}}' />
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
     9
                </a>
833
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    10
            </div>
874
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    11
            <div class='Ldt-AnnotationsList-Duration'>{{begin}} - {{end}}</div>
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    12
            <h3 class='Ldt-AnnotationsList-Title'>
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    13
                <a href='{{url}}'>{{title}}</a>
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    14
            </h3>
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    15
            <p class='Ldt-AnnotationsList-Description'>{{description}}</p>
833
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    16
            {{#tags.length}}
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    17
            <ul class='Ldt-AnnotationsList-Tags'>
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    18
                {{#tags}}
874
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    19
                {{#.}}
833
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    20
                <li class='Ldt-AnnotationsList-Tag-Li'>
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    21
                    <div class='Ldt-AnnotationsList-Tag-Div'>{{.}}</div>
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    22
                </li>
874
38b65761a7d5 TooltipWidget, SliderWidget, corrections in AnnotationList, CSS are now split
veltr
parents: 870
diff changeset
    23
                {{/.}}
833
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    24
                {{/tags}}
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    25
            </ul>
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    26
            {{/tags.length}}
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    27
        </li>
33a5d5882be4 Last commit before weekend
veltr
parents: 830
diff changeset
    28
        {{/annotations}}
585
44a4a4a179c1 first version of the AnnotationListWidget.
hamidouk
parents:
diff changeset
    29
    </ul>
44a4a4a179c1 first version of the AnnotationListWidget.
hamidouk
parents:
diff changeset
    30
</div>