{% extends 'base.html' %} {% block content %} {% if messages %} {% for message in messages %} {% endfor %} {% else %}
{% endif %} {% if user.profile.playlists.all.count == 0 %} {% 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 notified on the Dashboard whenever there's any new un-exported playlists on YouTube :)

Go to Dashboard
{% else %} {% if user.profile.imported_yt_playlists %}
{% endif %} {% 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 {% if user_playlists.count > 3 %}View All{% endif %}

{% if user_playlists %}
{% for playlist in user_playlists|slice:"0:3" %}
{% endfor %}
{% else %}
Nothing to see here... yet.
{% 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 %}