src/templates/annotationsListWidget.html
author veltr
Wed, 18 Jan 2012 10:21:53 +0100
branchpopcorn-port
changeset 658 cfaf0986d22b
parent 588 78cf49152d4a
child 680 28ffcd88cdfd
permissions -rw-r--r--
Merge with bf65c3364d2db4ab904fe576de1a9d471e9923a2

{{! template for the annotation list widget }}
<div class='Ldt-AnnotationsListWidget'>
  <!-- ugly div because we want to have a double border -->
  <div class='Ldt-Annotation-DoubleBorder'>
    <ul>
    {{#annotations}}
      <li>
        <a href='#a={{id}}'>
          <div style='overflow: auto; margin-top: 5px; margin-bottom: 5px;'>
            <div class='Ldt-AnnotationsList-Caption'>
              <img src='http://i.imgur.com/aoUlC.jpg'></img>
            </div>
            <div class='Ldt-AnnotationsList-Duration'>{{begin}} - {{end}}</div>
            <div class='Ldt-AnnotationsList-Title'>{{title}}</div>
            <div class='Ldt-AnnotationsList-Description'>{{desc}}</div>
          </div>
        </a>
      </li>
    {{/annotations}}
    </ul>
  </div>
</div>