{% extends "base_list.html" %} {% load mathfilters %} {% load static %} {% load naturalduration %} {% block title %}{{object.title}}{% endblock %} {% block head_extra %} {% endblock %} {% block lists %}
{{object.scrobble_set.count}} scrobbles
{% if object.scrobble_set.last.long_play_seconds %}{{object.scrobble_set.last.long_play_seconds|natural_duration}}{% if object.scrobble_set.last.long_play_complete %} and completed{% else %} spent playing{% endif %}
{% endif %}{% if object.scrobble_set.last.long_play_complete == True %} Play again {% else %} Resume playing {% endif %}
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 %} |