{% extends 'base.html' %} {% block content %}
{{ user.username }}

{{ user.get_full_name }}

{{ user.profile.user_summary }}

{{ user.profile.user_location }}

Settings
  • YouTube Channel ID
    {{ user.profile.yt_channel_id }}
  • Followers
    0
  • Total Playlist Count
    {{ user.playlists.count }}
  • Profile Views
    0
  • Imported their YouTube Playlists
    {% if user.profile.imported_yt_playlists %}Yes{% else %}No{% endif %}
{{ user.playlists.count }}Playlists Statistics
Public {{ statistics.public_x }}%
Private {{ statistics.private_x }}%
Favorites {{ statistics.favorites_x }}%
Watching {{ statistics.watching_x }}%
Imported {{ statistics.imported_x }}%
{{ watching.count }}Watching
{% if watching %} {% for pl in watching|slice:"0:5" %} {{ pl.name|truncatechars:"40" }} {{ pl.get_watched_videos_count }}/{{ pl.get_watchable_videos_count }} viewed
{% if forloop.last and watching.count > 5 %} + {{ watching.count|add:"-5" }} more {% endif %} {% endfor %} {% else %}
Mark something as watching!
{% endif %}
No activity yet!
{% endblock %}