Browse Source

[templates] Fix video game detail page

Colin Powell 2 weeks ago
parent
commit
b7638c648a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vrobbler/templates/videogames/videogame_detail.html

+ 1 - 1
vrobbler/templates/videogames/videogame_detail.html

@@ -88,7 +88,7 @@
                 <tbody>
                     {% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %}
                     <tr>
-                        <td>{{scrobble.local-timestamp}}</td>
+                        <td>{{scrobble.local_timestamp}}</td>
                         <td>{% if scrobble.long_play_complete == True %}Yes{% else %}Not yet{% endif %}</td>
                         <td>{% if scrobble.in_progress %}Now playing{% else %}{{scrobble.playback_position_seconds|natural_duration}}{% endif %}</td>
                         <td>{% for platform in scrobble.video_game.platforms.all %}<a href="{{platform.get_absolute_url}}">{{platform}}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</td>