diff --git a/vrobbler/templates/base.html b/vrobbler/templates/base.html index 05e85ba..850ba16 100644 --- a/vrobbler/templates/base.html +++ b/vrobbler/templates/base.html @@ -297,7 +297,7 @@

{{scrobble.media_obj.title}}

{% if scrobble.media_obj.subtitle %}

{{scrobble.media_obj.subtitle}}

{% endif %} {% if scrobble.logdata %}{% if scrobble.logdata.description %}

{{scrobble.logdata.description}}

{% endif %}{% endif %} -

{{scrobble.timestamp|naturaltime}} from {{scrobble.source}}

+

{{scrobble.local_timestamp|naturaltime}} from {{scrobble.source}}

diff --git a/vrobbler/templates/beers/beer_detail.html b/vrobbler/templates/beers/beer_detail.html index d7c7ed4..7bc1b39 100644 --- a/vrobbler/templates/beers/beer_detail.html +++ b/vrobbler/templates/beers/beer_detail.html @@ -57,7 +57,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/boardgames/boardgame_detail.html b/vrobbler/templates/boardgames/boardgame_detail.html index fa6c20c..b277ce7 100644 --- a/vrobbler/templates/boardgames/boardgame_detail.html +++ b/vrobbler/templates/boardgames/boardgame_detail.html @@ -62,7 +62,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.media_obj.publisher}} {% if scrobble.screenshot%}{% endif %} diff --git a/vrobbler/templates/books/book_detail.html b/vrobbler/templates/books/book_detail.html index 095a0ce..30efa93 100644 --- a/vrobbler/templates/books/book_detail.html +++ b/vrobbler/templates/books/book_detail.html @@ -52,7 +52,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {% if scrobble.long_play_complete == True %}Yes{% endif %} {% if scrobble.in_progress %}Now reading{% else %}{{scrobble.session_pages_read}}{% endif %} {% for author in scrobble.book.authors.all %}{{author}}{% if not forloop.last %}, {% endif %}{% endfor %} diff --git a/vrobbler/templates/locations/geolocation_detail.html b/vrobbler/templates/locations/geolocation_detail.html index 138d9a4..2d6cfb8 100644 --- a/vrobbler/templates/locations/geolocation_detail.html +++ b/vrobbler/templates/locations/geolocation_detail.html @@ -62,7 +62,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.timestamp|naturaltime}} + {{scrobble.local_timestamp|naturaltime}} {% endfor %} diff --git a/vrobbler/templates/moods/mood_detail.html b/vrobbler/templates/moods/mood_detail.html index 91d11cd..764bad9 100644 --- a/vrobbler/templates/moods/mood_detail.html +++ b/vrobbler/templates/moods/mood_detail.html @@ -28,7 +28,7 @@ {% for scrobble in object.scrobble_set.all %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/music/album_detail.html b/vrobbler/templates/music/album_detail.html index 4ecb263..d0bf602 100644 --- a/vrobbler/templates/music/album_detail.html +++ b/vrobbler/templates/music/album_detail.html @@ -49,7 +49,7 @@ - {% for track in object.tracks %} + {% for track in object.tracks.all %} {{rank}}#1 {{track.title}} @@ -82,7 +82,7 @@ {% for scrobble in object.scrobbles %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.track.title}} {{scrobble.track.artist.name}} diff --git a/vrobbler/templates/music/artist_detail.html b/vrobbler/templates/music/artist_detail.html index 266f972..e6124ec 100644 --- a/vrobbler/templates/music/artist_detail.html +++ b/vrobbler/templates/music/artist_detail.html @@ -54,7 +54,7 @@ #{{track.0}} {{track.1.title}} - {{track.1.album}} + {{track.1.primary_album}} {{track.1.scrobble_count}}
@@ -83,9 +83,9 @@ {% for scrobble in object.scrobbles %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.track.title}} - {{scrobble.track.album.name}} + {{scrobble.track.primary_album.name}} {% endfor %} diff --git a/vrobbler/templates/music/track_detail.html b/vrobbler/templates/music/track_detail.html index acec117..6fdacb9 100644 --- a/vrobbler/templates/music/track_detail.html +++ b/vrobbler/templates/music/track_detail.html @@ -4,8 +4,8 @@ {% block lists %}
- {% if track.album.cover_image %} -

+ {% if track.primary_image_url %} +

{% endif %}
@@ -28,9 +28,9 @@ {% for scrobble in object.scrobble_set.all %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.track.title}} - {{scrobble.track.album}} + {{scrobble.track.primary_album}} {{scrobble.track.artist}} {% endfor %} diff --git a/vrobbler/templates/podcasts/podcast_detail.html b/vrobbler/templates/podcasts/podcast_detail.html index 182350b..296e609 100644 --- a/vrobbler/templates/podcasts/podcast_detail.html +++ b/vrobbler/templates/podcasts/podcast_detail.html @@ -45,7 +45,7 @@ {% for scrobble in scrobbles.all %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.podcast_episode}} {% endfor %} diff --git a/vrobbler/templates/scrobbles/_row.html b/vrobbler/templates/scrobbles/_row.html index eb78797..5e31a41 100644 --- a/vrobbler/templates/scrobbles/_row.html +++ b/vrobbler/templates/scrobbles/_row.html @@ -1,7 +1,7 @@ {% load humanize %} {% load naturalduration %} - {% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.timestamp|naturaltime}}{% endif %} + {% if scrobble.in_progress %}{{scrobble.media_obj.strings.verb}} now | Finish{% else %}{{scrobble.local_timestamp|naturaltime}}{% endif %} {% if scrobble.media_type == "Task" %}

{{scrobble.media_obj.title|truncatechars_html:45}} - {% if scrobble.logdata %}{% if scrobble.logdata.description %}{{scrobble.logdata.description}}{% endif %}{% endif %}

diff --git a/vrobbler/templates/scrobbles/import_detail.html b/vrobbler/templates/scrobbles/import_detail.html index a26abb7..389c4bb 100644 --- a/vrobbler/templates/scrobbles/import_detail.html +++ b/vrobbler/templates/scrobbles/import_detail.html @@ -22,7 +22,7 @@ {% for scrobble in object.scrobbles %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.media_type}} {{scrobble.media_obj}} diff --git a/vrobbler/templates/scrobbles/scrobble_archive_year.html b/vrobbler/templates/scrobbles/scrobble_archive_year.html index 5848905..85b7831 100644 --- a/vrobbler/templates/scrobbles/scrobble_archive_year.html +++ b/vrobbler/templates/scrobbles/scrobble_archive_year.html @@ -19,7 +19,7 @@ {% for scrobble in object_list %} - {{scrobble.timestamp|naturaltime}} + {{scrobble.local_timestamp|naturaltime}} {{scrobble.media_obj}} {{scrobble.media_type}} diff --git a/vrobbler/templates/sports/sportevent_detail.html b/vrobbler/templates/sports/sportevent_detail.html index 577748d..b2c74b5 100644 --- a/vrobbler/templates/sports/sportevent_detail.html +++ b/vrobbler/templates/sports/sportevent_detail.html @@ -20,7 +20,7 @@ {% for scrobble in object.scrobble_set.all %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.media_obj.round.season.name}} {{scrobble.media_obj.round.season.league}} diff --git a/vrobbler/templates/tasks/task_detail.html b/vrobbler/templates/tasks/task_detail.html index d8f4abf..dde5c21 100644 --- a/vrobbler/templates/tasks/task_detail.html +++ b/vrobbler/templates/tasks/task_detail.html @@ -59,7 +59,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.logdata.description}} {{scrobble.source}} {{scrobble.log.notes}} diff --git a/vrobbler/templates/trails/trail_detail.html b/vrobbler/templates/trails/trail_detail.html index 0f2939d..ff19804 100644 --- a/vrobbler/templates/trails/trail_detail.html +++ b/vrobbler/templates/trails/trail_detail.html @@ -57,7 +57,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/videogames/videogame_detail.html b/vrobbler/templates/videogames/videogame_detail.html index 56c4c4c..7b09519 100644 --- a/vrobbler/templates/videogames/videogame_detail.html +++ b/vrobbler/templates/videogames/videogame_detail.html @@ -88,7 +88,7 @@ {% for scrobble in object.scrobble_set.all|dictsortreversed:"timestamp" %} - {{scrobble.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 %} diff --git a/vrobbler/templates/videos/series_detail.html b/vrobbler/templates/videos/series_detail.html index 683bf68..f44a660 100644 --- a/vrobbler/templates/videos/series_detail.html +++ b/vrobbler/templates/videos/series_detail.html @@ -60,7 +60,7 @@ {% for scrobble in scrobbles %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {{scrobble.media_obj.title}} {{scrobble.media_obj.season_number}} {{scrobble.media_obj.episode_number}} diff --git a/vrobbler/templates/videos/video_detail.html b/vrobbler/templates/videos/video_detail.html index e47285a..d49276f 100644 --- a/vrobbler/templates/videos/video_detail.html +++ b/vrobbler/templates/videos/video_detail.html @@ -87,7 +87,7 @@ dd { {% for scrobble in object.scrobble_set.all %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/webpages/webpage_detail.html b/vrobbler/templates/webpages/webpage_detail.html index 51143e6..f77fe89 100644 --- a/vrobbler/templates/webpages/webpage_detail.html +++ b/vrobbler/templates/webpages/webpage_detail.html @@ -53,7 +53,7 @@ {% for scrobble in object.scrobble_set.all %} - {{scrobble.timestamp}} + {{scrobble.local_timestamp}} {% endfor %}