<tbody>
{% for media in course.media.all|from_course_type:type %}
{% if media.published or user.is_staff %}
+ {% if media.type == 'webm' %}
<tr>
<td {% if forloop.first %}class="border-top"{% endif %} width="230px">
<a href="{% url teleforma-media-detail media.id %}" title="{% trans "View" %}">
</td>
<td {% if forloop.first %}class="border-top"{% endif %} width="10%" align="center">{% if media.item.file %}<a href="{% url teleforma-media-download media.id %}"><img src="{{ STATIC_URL }}teleforma/images/download_media.png" style="vertical-align:middle" alt="" title="{% trans "Download" %}" /></a>{% endif %}</td>
</tr>
+ {% endif %}
{% endif %}
{% endfor %}
</tbody>