{% extends "base_list.html" %} {% load static %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{% if object.imdb_rating %}
{{object.imdb_rating}}
{% endif %} {% if object.tmdb_rating %}
{{object.tmdb_rating}}
{% endif %}
{% if object.tv_series %}

{{object.tv_series}} - S{{object.season_number}}E{{object.episode_number}}

{% endif %} {% if object.overview %}

{{object.overview}}

{% endif %} {% if object.plot%}

{{object.plot|safe|linebreaks|truncatewords:160}}

{% endif %}
{% if object.imdb_id %}

{% endif %} {% if object.youtube_id %}

{% endif %}
{% include "scrobbles/_chart_links.html" %}

Last scrobbles

{% for scrobble in scrobbles.all %} {% endfor %}
Date With Rated
{{scrobble.local_timestamp}} {% if scrobble.logdata.with_people %}{{scrobble.logdata.with_people|join:", " }}{% else %}Solo{% endif %} {% if scrobble.logdata.rating %}{{scrobble.logdata.rating }}{% else %}Unrated{% endif %}
{% endblock %}