{% extends "base_list.html" %} {% load mathfilters %} {% load static %} {% load naturalduration %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{% if object.cover %}
{% endif %}
{% if object.description%}

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


{% endif %}

{{scrobbles.count}} scrobbles

Play again

{% if object.genre.all %}

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

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

Tags: {% for tag in object.tags.all %} {{ tag.name }} {% endfor %}

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

Last scrobbles

{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Location Players
{{scrobble.local_timestamp}} {{scrobble.logdata.location }} {% if scrobble.logdata.player_log %}{{scrobble.logdata.as_html|safe }}{% else %}No data{% endif %}
{% if is_paginated %} {% endif %}
{% endblock %}