From ff5a88cb175b1fc81da75bf772163107ea572d3d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 15 Jun 2023 11:20:10 -0400 Subject: [PATCH] Add screenshots and saves to VG details --- vrobbler/templates/videogames/videogame_detail.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vrobbler/templates/videogames/videogame_detail.html b/vrobbler/templates/videogames/videogame_detail.html index bef128f..39de16b 100644 --- a/vrobbler/templates/videogames/videogame_detail.html +++ b/vrobbler/templates/videogames/videogame_detail.html @@ -67,15 +67,18 @@ Completed Duration Platforms + State file {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} {{scrobble.timestamp}} - {% if scrobble.long_play_complete == True %}Yes{% endif %} + {% if scrobble.long_play_complete == True %}Yes{% 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.videogame_screenshot%}{% endif %} {% endfor %}