diff --git a/vrobbler/templates/scrobbles/_last_scrobbles.html b/vrobbler/templates/scrobbles/_last_scrobbles.html new file mode 100644 index 0000000..5771696 --- /dev/null +++ b/vrobbler/templates/scrobbles/_last_scrobbles.html @@ -0,0 +1,209 @@ +

Last Scrobbles

+

Today {{counts.today}} | This Week {{counts.week}} | This Month {{counts.month}} | This Year {{counts.year}} | All Time {{counts.alltime}}

+ +
+ + +
+
+
+ + + + + + + + + + + {% for scrobble in object_list %} + + + {% if scrobble.track.album.cover_image %} + + {% else %} + + {% endif %} + + + + {% endfor %} + +
TimeAlbumTrackArtist
{{scrobble.timestamp|naturaltime}}{{scrobble.track.album.name}}{{scrobble.track.title}}{{scrobble.track.artist.name}}
+
+
+ +
+

Latest watched

+
+ + + + + + + + + + + {% for scrobble in video_scrobble_list %} + + + {% if scrobble.video.cover_image %} + + {% else %} + + {% endif %} + + + + {% endfor %} + +
TimeCoverTitleSeries
{{scrobble.timestamp|naturaltime}}{% if scrobble.video.tv_series%}S{{scrobble.video.season_number}}E{{scrobble.video.episode_number}} -{%endif %} {{scrobble.video.title}}{% if scrobble.video.tv_series %}{{scrobble.video.tv_series}}{% endif %} +
+
+
+ +
+

Latest Sports

+
+ + + + + + + + + + + {% for scrobble in sport_scrobble_list %} + + + + + + + {% endfor %} + +
DateTitleRoundLeague
{{scrobble.timestamp|naturaltime}}{{scrobble.sport_event.title}}{{scrobble.sport_event.round.name}}{{scrobble.sport_event.round.season.league}}
+
+
+ +
+

Latest Podcasted

+
+ + + + + + + + + + {% for scrobble in podcast_scrobble_list %} + + + + + + {% endfor %} + +
DateTitlePodcast
{{scrobble.timestamp|naturaltime}}{{scrobble.podcast_episode.title}}{{scrobble.podcast_episode.podcast}}
+
+
+ +
+

Latest Video Games

+
+ + + + + + + + + + + + {% for scrobble in videogame_scrobble_list %} + + + {% if scrobble.videogame_screenshot %} + + {% else %} + {% if scrobble.videogame.hltb_cover %} + + {% endif %} + {% endif %} + + + + + {% endfor %} + +
DateCoverTitleTime played (mins)Percent complete
{{scrobble.timestamp|naturaltime}}{{scrobble.media_obj.title}}{{scrobble.playback_position_seconds|natural_duration}}{{scrobble.percent_played}}
+
+
+ + +
+

Latest Board Games

+
+ + + + + + + + + + + {% for scrobble in boardgame_scrobble_list %} + + + + + + + {% endfor %} + +
DateCoverTitleTime played (mins)
{{scrobble.timestamp|naturaltime}}{{scrobble.media_obj.title}}{{scrobble.playback_position_seconds|natural_duration}}
+
+
+
+ {% endif %} diff --git a/vrobbler/templates/scrobbles/_top_charts.html b/vrobbler/templates/scrobbles/_top_charts.html index 833bc71..e054a20 100644 --- a/vrobbler/templates/scrobbles/_top_charts.html +++ b/vrobbler/templates/scrobbles/_top_charts.html @@ -18,7 +18,7 @@
#1 {{artists.0.name}}
{% if artists.0 %} {% if artists.0.thumbnail %} - + {% else %} {% endif %} @@ -31,7 +31,7 @@
#2 {{artists.1.name}}
{% if artists.1 %} {% if artists.1.thumbnail %} - + {% else %} {% endif %} @@ -41,7 +41,7 @@
#3 {{artists.2.name}}
{% if artists.2 %} {% if artists.2.thumbnail %} - + {% else %} {% endif %} @@ -51,7 +51,7 @@
#4 {{artists.3.name}}
{% if artists.3 %} {% if artists.3.thumbnail %} - + {% else %} {% endif %} @@ -61,7 +61,7 @@
#5 {{artists.4.name}}
{% if artists.4 %} {% if artists.4.thumbnail %} - + {% else %} {% endif %} @@ -75,7 +75,7 @@
#6 {{artists.5.name}}
{% if artists.5 %} {% if artists.5.thumbnail %} - + {% else %} {% endif %} @@ -85,7 +85,7 @@
#7 {{artists.6.name}}
{% if artists.6 %} {% if artists.6.thumbnail %} - + {% else %} {% endif %} @@ -95,7 +95,7 @@
#8 {{artists.7.name}}
{% if artists.7 %} {% if artists.7.thumbnail %} - + {% else %} {% endif %} @@ -105,7 +105,7 @@
#9 {{artists.8.name}}
{% if artists.8 %} {% if artists.8.thumbnail %} - + {% else %} {% endif %} @@ -115,7 +115,7 @@
#10 {{artists.9.name}}
{% if artists.9 %} {% if artists.9.thumbnail %} - + {% else %} {% endif %} @@ -125,7 +125,7 @@
#11 {{artists.10.name}}
{% if artists.10 %} {% if artists.10.thumbnail %} - + {% else %} {% endif %} @@ -135,7 +135,7 @@
#12 {{artists.11.name}}
{% if artists.11 %} {% if artists.11.thumbnail %} - + {% else %} {% endif %} @@ -145,7 +145,7 @@
#13 {{artists.12.name}}
{% if artists.12 %} {% if artists.12.thumbnail %} - + {% else %} {% endif %} @@ -155,7 +155,7 @@
#14 {{artists.13.name}}
{% if artists.13 %} {% if artists.13.thumbnail %} - + {% else %} {% endif %} diff --git a/vrobbler/templates/scrobbles/scrobble_list.html b/vrobbler/templates/scrobbles/scrobble_list.html index 332c2c2..1f2c19c 100644 --- a/vrobbler/templates/scrobbles/scrobble_list.html +++ b/vrobbler/templates/scrobbles/scrobble_list.html @@ -88,219 +88,11 @@ {% if user.is_authenticated %}
- {% include "scrobbles/_quick_resume.html" %} + {% include "scrobbles/_top_charts.html" %}
-

Last Scrobbles

-

Today {{counts.today}} | This Week {{counts.week}} | This Month {{counts.month}} | This Year {{counts.year}} | All Time {{counts.alltime}}

-
-
- - -
-
-
- - - - - - - - - - - {% for scrobble in object_list %} - - - {% if scrobble.track.album.cover_image %} - - {% else %} - - {% endif %} - - - - {% endfor %} - -
TimeAlbumTrackArtist
{{scrobble.timestamp|naturaltime}}{{scrobble.track.album.name}}{{scrobble.track.title}}{{scrobble.track.artist.name}}
-
-
- -
-

Latest watched

-
- - - - - - - - - - - {% for scrobble in video_scrobble_list %} - - - {% if scrobble.video.cover_image %} - - {% else %} - - {% endif %} - - - - {% endfor %} - -
TimeCoverTitleSeries
{{scrobble.timestamp|naturaltime}}{% if scrobble.video.tv_series%}S{{scrobble.video.season_number}}E{{scrobble.video.episode_number}} -{%endif %} {{scrobble.video.title}}{% if scrobble.video.tv_series %}{{scrobble.video.tv_series}}{% endif %} -
-
-
- -
-

Latest Sports

-
- - - - - - - - - - - {% for scrobble in sport_scrobble_list %} - - - - - - - {% endfor %} - -
DateTitleRoundLeague
{{scrobble.timestamp|naturaltime}}{{scrobble.sport_event.title}}{{scrobble.sport_event.round.name}}{{scrobble.sport_event.round.season.league}}
-
-
- -
-

Latest Podcasted

-
- - - - - - - - - - {% for scrobble in podcast_scrobble_list %} - - - - - - {% endfor %} - -
DateTitlePodcast
{{scrobble.timestamp|naturaltime}}{{scrobble.podcast_episode.title}}{{scrobble.podcast_episode.podcast}}
-
-
- -
-

Latest Video Games

-
- - - - - - - - - - - - {% for scrobble in videogame_scrobble_list %} - - - {% if scrobble.videogame_screenshot %} - - {% else %} - {% if scrobble.videogame.hltb_cover %} - - {% endif %} - {% endif %} - - - - - {% endfor %} - -
DateCoverTitleTime played (mins)Percent complete
{{scrobble.timestamp|naturaltime}}{{scrobble.media_obj.title}}{{scrobble.playback_position_seconds|natural_duration}}{{scrobble.percent_played}}
-
-
- - -
-

Latest Board Games

-
- - - - - - - - - - - {% for scrobble in boardgame_scrobble_list %} - - - - - - - {% endfor %} - -
DateCoverTitleTime played (mins)
{{scrobble.timestamp|naturaltime}}{{scrobble.media_obj.title}}{{scrobble.playback_position_seconds|natural_duration}}
-
-
-
- {% endif %} + {% include "scrobbles/_last_scrobbles.html" %}