{% extends 'base.html' %} {% block content %} {% if messages %}
{% for message in messages %} {% endfor %} {% endif %} {% 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 %}
{% if watching %}

Continue Watching

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

Most viewed playlists View All

{% if user_playlists %}
{% for playlist in user_playlists|slice:"0:3" %}
{% endfor %}
{% else %}
You have no playlists ;-;
{% endif %}

Recently Accessed

{% if recently_accessed_playlists %}
{% for playlist in recently_accessed_playlists %}
{% endfor %}
{% else %}
You have no playlists ;-;
{% endif %}

Recently Added

{% if recently_added_playlists %}
{% for playlist in recently_added_playlists %}
{% endfor %}
{% else %}
You have no playlists ;-;
{% endif %}
{% endif %} {% endblock %}