{% 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 %}

Dashboard

Logged in as {{ user.username }}

25 total playlists
    24 owned
      4 private
      24 public
    36 Imported
      24 mixes
      12 others
Card title
Card subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

Card link Another link
Card title
Card subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

Card link Another link
Card title
Card subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

Card link Another link
{% 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 %}