src/Pumukit/WebTVBundle/Resources/views/Misc/chapter_marks.html.twig line 1

Open in your IDE?
  1. {% if editor_chapters is defined and editor_chapters %}
  2.     <strong>{% trans %}Marks:{% endtrans %}</strong>
  3.     <ol style="list-style-type:decimal;padding-left:40px;">
  4.         {% for chapter in editor_chapters %}
  5.             <li>{{ chapter.title }} :
  6.                 <a style="cursor:pointer;color:blue"
  7.                    onMouseOver="this.style.textDecoration='underline'"
  8.                    onMouseOut="this.style.textDecoration='none'"
  9.                    onClick="paella_video = document.getElementById('paellaiframe').contentWindow.__paella_instances__[0].videoContainer.setCurrentTime(
  10.                         {{ chapter.real_time }} - document.getElementById('paellaiframe').contentWindow.__paella_instances__[0].videoContainer.trimStart
  11.                    );">
  12.                     {{ date("00:00:00 + " ~ (chapter.time_to_show|round) ~ " seconds") | format_datetime('none', 'medium',locale=app.request.getLocale(), pattern="HH:mm:ss") }}
  13.                 </a>
  14.             </li>
  15.         {% endfor %}
  16.     </ol>
  17. {% endif %}