{% load static %} {% load video_filters %}

Welcome to YouTube Clone

Upload, share, and watch videos from creators around the world.

{% if user.is_authenticated %} Upload Video {% else %} Join Now {% endif %}

Browse by Category

{% for category_id, category_name in categories %} {% endfor %}

Latest Videos

{% for video in videos %} {% empty %}

No videos yet!

Be the first to upload a video and start sharing your content.

{% if user.is_authenticated %} Upload Your First Video {% else %} Sign Up to Upload {% endif %}
{% endfor %}
{% for category_id, videos_list in category_videos.items %} {% if videos_list %}

{{ categories|lookup:category_id }}

{% for video in videos_list %} {% endfor %}
{% endif %} {% endfor %}