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

Continue Watching

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

{% if playlist.tags.all %} {% for tag in playlist.tags.all %} {{ tag.name }} {% endfor %} {% endif %}

Last watched {{ playlist.last_watched|naturalday }}

{% endfor %}

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

{{ playlist.name }}

  • Bootstrap
  • by {{ playlist.channel_name }}
  • {{ playlist.num_of_accesses }} clicks
{% endfor %}
PlaceholderImage cap
Card title that wraps to a new line

This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

{{ user.playlists.count }}Playlists Statistics
PlaceholderImage cap
Card title

This card has supporting text below as a natural lead-in to additional content.

Last updated 3 mins ago

A well-known quote, contained in a blockquote element.

Card title

This card has a regular title and short paragraph of text below it.

Last updated 3 mins ago

PlaceholderCard image

A well-known quote, contained in a blockquote element.

Card title

This is another card with title and supporting text below. This card has some additional content to make it slightly taller overall.

Last updated 3 mins ago

Custom cards

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

{{ playlist.name }}

  • Bootstrap
  • by {{ playlist.channel_name }}
  • {{ playlist.num_of_accesses }}
{% endfor %}

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