{% extends 'base.html' %} {% load humanize %} {% block content %} {% if user.playlists.all.count == 0 %} {% endif %} {% if import_successful %}

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

{{ user.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 %}
{{ user.playlists.count }}Playlists Statistics{% if user.playlists.count == 0 %}: You have no playlists in your UnTube!{% endif %}
{{ watching.count }} {% if watching.count > 0 %} Playlist{% if watching.count > 1 %}s{% endif %} Watching: Percent Complete Chart View {% else %} Watching: Mark playlists as watching to view their completeness % here! {% endif %}


{% if watching %}

Continue Watching

{% if watching.count > 5 %}

{% endif %}

{% if watching.count > 4 %}
{% for playlist in watching %}
{{ playlist.name }} thumbnail
{{ playlist.name }}

{{ playlist.get_watched_videos_count }}/{{ playlist.get_watchable_videos_count }} viewed {% if playlist.get_watch_time_left != "0secs." %}{{ playlist.get_watch_time_left }} left{% endif %}

Last watched {{ playlist.last_watched|naturaltime }}

{% endfor %}
{% else %}
{% for playlist in watching %}
{{ playlist.name }} thumbnail
{{ playlist.name }}

{{ playlist.get_watched_videos_count }}/{{ playlist.get_watchable_videos_count }} viewed {% if playlist.get_watch_time_left != "0secs." %}{{ playlist.get_watch_time_left }} left{% endif %}

Last watched {{ playlist.last_watched|naturaltime }}

{% endfor %}
{% endif %}
{% endif %}

Recently Added

{% if recently_added_playlists %} {% else %}
You have no playlists ;-;
{% endif %}

Recently Accessed

{% if recently_accessed_playlists %} {% else %}
Nothing to see here... yet.
{% endif %}


{% endif %} {% endblock %}