{% extends 'base.html' %} {% block content %} {% for message in messages %} {% endfor %} {% if user.profile.just_joined %} {% if not channel_found %}

Uh-oh, we were not able to find any YouTube channel linked to this Google account. Please create a YouTube channel to be able to import/export playlists back and forth between YouTube and UnTube.

Retry
{% endif %} {% else %} {% if import_successful %}

Welcome to UnTube, {{ user.username|capfirst }}

{{ user.profile.playlists.all.count }} playlists from YouTube have been successfully imported.

You'll now be able to import/export playlists from YouTube and UnTube :)

Go to Dashboard
{% else %}

Dashboard

Logged in as {{ user.username }}
{% if watching %}

Continue Watching

{% for playlist in watching|slice:"0:2" %} {% if forloop.counter == 2 %} {% if watching.count|add:"-2" != 0 %} {% endif %} {% endif %} {% endfor %}
{% endif %}

Most viewed playlists View All

{% for playlist in user_playlists|slice:"0:3" %}
{% endfor %}


Recently Added


Add a playlist


{% csrf_token %}
Loading...





{{ playlist.name }} by {{ playlist.channel_name }} {{ playlist.video_count }} videos {{ playlist.playlist_duration }} {% if playlist.has_unavailable_videos %}Some videos in the playlist are deleted{% endif %} {% for video in videos %} {{ video.video_position }}. {{ video.name }} {% endfor %}
{% endif %} {% endif %} {% endblock %}