{% extends 'base.html' %} {% load static %} {% block title %}My Profile - YouTube Clone{% endblock %} {% block content %}
{% if profile.profile_picture %} {{ user.username }} {% else %}
{% endif %}

{{ user.username }}

{{ user.email }}

{{ profile.subscriber_count }} subscribers

View Channel
Edit Profile
{% csrf_token %}
{{ form.profile_picture }} {% if form.profile_picture.errors %}
{{ form.profile_picture.errors }}
{% endif %}
{{ form.bio }} {% if form.bio.errors %}
{{ form.bio.errors }}
{% endif %}
My Videos
{% if user_videos %}
{% for video in user_videos %}
{% if video.thumbnail %} {{ video.title }} {% else %}
{% endif %}
{{ video.title|truncatechars:40 }}

{{ video.views }} views • {{ video.likes }} likes

{{ video.upload_date|timesince }} ago

{% endfor %}
{% else %}
No videos yet

Start uploading videos to build your channel!

Upload Video
{% endif %}
{% endblock %}