{% load humanize %} {% for video in videos %}
{{ video.name|truncatewords:"15" }}
{{ video.duration }} {% if video.is_unavailable_on_yt %}Private{% endif %} {% if video.has_cc %}CC{% endif %} {% if video.view_count == -1 %}HIDDEN{% else %}{{ video.view_count|intword|intcomma }}{% endif %} {% if video.like_count == -1 %}HIDDEN{% else %}{{ video.like_count|intword|intcomma }}{% endif %}
{% endfor %}