{% load humanize %} {% for video in videos %}
{% if not video.is_unavailable_on_yt and not video.was_deleted_on_yt %} {% endif %}
{% if video.user_label %} {{ video.user_label }} {% else %} {{ video.name|truncatewords:"15" }} {% endif %}
{% if not video.is_unavailable_on_yt and not video.was_deleted_on_yt %}
{{ 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 %}
{% endif %}
{% endfor %}