diff --git a/vrobbler/templates/locations/geolocation_detail.html b/vrobbler/templates/locations/geolocation_detail.html index 5ae079d..cd047df 100644 --- a/vrobbler/templates/locations/geolocation_detail.html +++ b/vrobbler/templates/locations/geolocation_detail.html @@ -62,7 +62,7 @@ {% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} - {{scrobble.local_timestamp|naturaltime}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/moods/mood_detail.html b/vrobbler/templates/moods/mood_detail.html index 59162c4..09f1b20 100644 --- a/vrobbler/templates/moods/mood_detail.html +++ b/vrobbler/templates/moods/mood_detail.html @@ -28,7 +28,7 @@ {% for scrobble in scrobbles.all %} - {{scrobble.local_timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/music/album_detail.html b/vrobbler/templates/music/album_detail.html index d0bf602..c88a24c 100644 --- a/vrobbler/templates/music/album_detail.html +++ b/vrobbler/templates/music/album_detail.html @@ -82,7 +82,7 @@ {% for scrobble in object.scrobbles %} - {{scrobble.local_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 e6124ec..e4766b0 100644 --- a/vrobbler/templates/music/artist_detail.html +++ b/vrobbler/templates/music/artist_detail.html @@ -83,7 +83,7 @@ {% for scrobble in object.scrobbles %} - {{scrobble.local_timestamp}} + {{scrobble.local_timestamp}} {{scrobble.track.title}} {{scrobble.track.primary_album.name}} diff --git a/vrobbler/templates/music/track_detail.html b/vrobbler/templates/music/track_detail.html index 65a0508..733ddb7 100644 --- a/vrobbler/templates/music/track_detail.html +++ b/vrobbler/templates/music/track_detail.html @@ -28,7 +28,7 @@ {% for scrobble in scrobbles.all %} - {{scrobble.local_timestamp}} + {{scrobble.local_timestamp}} {{scrobble.track.title}} {{scrobble.track.primary_album}} {{scrobble.track.artist}} diff --git a/vrobbler/templates/podcasts/podcast_detail.html b/vrobbler/templates/podcasts/podcast_detail.html index 296e609..8bacaaf 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.local_timestamp}} + {{scrobble.local_timestamp}} {{scrobble.podcast_episode}} {% endfor %} diff --git a/vrobbler/templates/puzzles/puzzle_detail.html b/vrobbler/templates/puzzles/puzzle_detail.html index 7bde048..a5976fd 100644 --- a/vrobbler/templates/puzzles/puzzle_detail.html +++ b/vrobbler/templates/puzzles/puzzle_detail.html @@ -57,7 +57,7 @@ {% for scrobble in scrobbles.all|dictsortreversed:"timestamp" %} - {{scrobble.local_timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/sports/sportevent_detail.html b/vrobbler/templates/sports/sportevent_detail.html index 25fc06b..164e267 100644 --- a/vrobbler/templates/sports/sportevent_detail.html +++ b/vrobbler/templates/sports/sportevent_detail.html @@ -20,7 +20,7 @@ {% for scrobble in scrobbles.all %} - {{scrobble.local_timestamp}} + {{scrobble.local_timestamp}} {{scrobble.media_obj.round.season.name}} {{scrobble.media_obj.round.season.league}} diff --git a/vrobbler/templates/trails/trail_detail.html b/vrobbler/templates/trails/trail_detail.html index ff19804..f68ab6f 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.local_timestamp}} + {{scrobble.local_timestamp}} {% endfor %} diff --git a/vrobbler/templates/videos/series_detail.html b/vrobbler/templates/videos/series_detail.html index f44a660..36d6cb9 100644 --- a/vrobbler/templates/videos/series_detail.html +++ b/vrobbler/templates/videos/series_detail.html @@ -60,7 +60,7 @@ {% for scrobble in scrobbles %} - {{scrobble.local_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 b887162..caf3926 100644 --- a/vrobbler/templates/videos/video_detail.html +++ b/vrobbler/templates/videos/video_detail.html @@ -87,7 +87,7 @@ dd { {% for scrobble in scrobbles.all %} - {{scrobble.local_timestamp}} + {{scrobble.local_timestamp}} {% endfor %}