{% else %}
{% for livestream in livestreams %}
{% if "webm" == livestream.stream_type %}
+ <script src="/static/teleforma/video-js/video.js"></script>
+ <link href="/static/teleforma/video-js/video-js.css" rel="stylesheet">
<div class="video">
- <video id="video" width="864" height="480" controls autoplay preload="auto">
+ <video id="my_video_1" class="video-js vjs-default-skin" width="864" height="480" controls preload="auto" data-setup='{}'>
<source src="{{ livestream.url|get_host:host }}" type="video/webm" />
</video>
</div>