From b7638c648a7401251a1e2211bce9ff7bbf9436cc Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 4 Aug 2025 19:56:52 -0400 Subject: [PATCH] [templates] Fix video game detail page --- vrobbler/templates/videogames/videogame_detail.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/templates/videogames/videogame_detail.html b/vrobbler/templates/videogames/videogame_detail.html index cc48778..7988894 100644 --- a/vrobbler/templates/videogames/videogame_detail.html +++ b/vrobbler/templates/videogames/videogame_detail.html @@ -88,7 +88,7 @@ {% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} - {{scrobble.local-timestamp}} + {{scrobble.local_timestamp}} {% 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 %}