{% extends "trakt-base.html" %} {% block trakt_title %}{{ title }}{% endblock %} {% block trakt_content %} {% if profile %}

{{ profile.username }}

Full Name: {{ profile.full_name }}
Location: {{ profile.location }}
Age: {{ profile.age }}
Gender: {{ profile.gender }}
{% if profile.watching %}
Currently watching: {% if profile.watching.type == 'movie' %} {{ profile.watching.movie.title }} ({{ profile.watching.movie.year }})
{% else %} {{ profile.watching.show.title }} {{ profile.watching.episode.season }}x{{ profile.watching.episode.number }} - {{ profile.watching.episode.title }}
{% endif %}
{% endif %}
Movies: Collection: {{ profile.stats.movies.collection }} Watched: {{ profile.stats.movies.watched }}

Episodes: Collection: {{ profile.stats.episodes.collection }} Watched: {{ profile.stats.episodes.watched }}
Recently watched:
{% for item in profile.watched %} {% endfor %} {% endif %} {% endblock %}
{% if item.type == 'episode' %} {{ item.show.title }} {{ item.episode.season }}x{{ item.episode.number }} - {{ item.episode.title }} {% else %} {{ item.movie.title }} ({{ item.movie.year}}) {% endif %} {{ item.watched }}