{% extends "home/base.html" %} {% load static %} {% load humanize %} {% block content %}

{{ channel_info.channel_name }}

{% if channel_info.channel_subs >= 1000000 %} Subscribers: {{ channel_info.channel_subs|intword }} {% else %} Subscribers: {{ channel_info.channel_subs|intcomma }} {% endif %}
Hide watched videos:
grid view list view
{% if videos %} {% for video in videos %}
video-thumb
play-icon
{% if video.source.player.watched %} seen-icon {% else %} unseen-icon {% endif %} {{ video.source.published }} | {{ video.source.player.duration_str }}

{{ video.source.title }}

{% endfor %} {% else %}

No videos found...

{% endif %}
{% endblock content %}