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

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


{% endif %}

{{scrobbles.count}} scrobbles {% if long_play_total_seconds %} | Total time: {{ long_play_total_seconds|natural_duration }}{% endif %} {% if long_play_finished_date %} | Finished: {{ long_play_finished_date|date:"M d, Y" }}{% endif %}

Play again

Last scrobbles

{% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} {% endfor %}
Date Completed Duration Platforms State file
{{scrobble.local_timestamp}} {% if scrobble.long_play_complete == True %}Yes (not complete?){% else %}Not yet{% 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 %} {% if scrobble.videogame_save_data %}Save data{% else %}Not yet{% endif %} {% if scrobble.screenshot%}{% endif %}
{% endblock %}