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

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


{% endif %}

{{object.scrobble_set.count}} scrobbles

{{object.scrobble_set.last.long_play_seconds|natural_duration}}{% if object.scrobble_set.last.long_play_complete %} and completed{% else %} spent playing{% endif %}

{% if object.scrobble_set.last.long_play_complete == True %} Play again {% else %} Resume playing {% endif %}

Last scrobbles

{% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Completed Duration Platforms
{{scrobble.timestamp}} {% if scrobble.long_play_complete == True %}Yes{% endif %} {% if scrobble.in_progress %}Now playing{% else %}{{scrobble.playback_position_seconds|natural_duration}}{% endif %} {% for platform in scrobble.video_game.platforms.all %}{{platform}}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endblock %}