{% extends "base_list.html" %} {% load static %} {% block title %}{{object.name}}{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{% if object.description %}

{{object.description}}

{% endif %} {% if object.genre.all %}

Genres: {% for tag in object.genre.all %}{{tag.name}} {% endfor %}

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

{% endif %} {% if object.twitch_id %}

View on Twitch

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

Last scrobbles

{% for scrobble in scrobbles %} {% endfor %}
Date Title With Rated
{{scrobble.local_timestamp}} {{scrobble.media_obj.title}} {% firstof scrobble.logdata.with_people|join:", " "Solo" %} {% firstof scrobble.logdata.rating "Unrated" %}
{% if is_paginated %} {% endif %}
{% endblock %}