{% extends 'base.html' %} {% load static %} {% block title %}{{ channel_user.username }}'s Channel - YouTube Clone{% endblock %} {% block content %}
{% if channel_profile.profile_picture %} {{ channel_user.username }} {% else %}
{% endif %}

{{ channel_user.username }}

{{ channel_profile.subscriber_count }} subscribers

{% if channel_profile.bio %}

{{ channel_profile.bio }}

{% endif %}
{% if user.is_authenticated and user != channel_user %} {% endif %}
Videos ({{ videos.count }})
{% if videos %}
{% for video in videos %}
{% if video.thumbnail %} {{ video.title }} {% else %}
{% endif %}
{{ video.title|truncatechars:50 }}

{{ video.views }} views • {{ video.upload_date|timesince }} ago

{{ video.likes }} likes • {{ video.comments.count }} comments

{% endfor %}
{% else %}

No videos yet

This channel hasn't uploaded any videos yet.

{% if user == channel_user %} Upload Your First Video {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}