| #{{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 %}
|