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 @@
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
Latest Sports
+
+
+
+
+ | Date |
+ Title |
+ Round |
+ League |
+
+
+
+ {% for scrobble in sport_scrobble_list %}
+
+ | {{scrobble.timestamp|naturaltime}} |
+ {{scrobble.sport_event.title}} |
+ {{scrobble.sport_event.round.name}} |
+ {{scrobble.sport_event.round.season.league}} |
+
+ {% endfor %}
+
+
+
+
+
+
+
Latest Podcasted
+
+
+
+
+ | Date |
+ Title |
+ Podcast |
+
+
+
+ {% for scrobble in podcast_scrobble_list %}
+
+ | {{scrobble.timestamp|naturaltime}} |
+ {{scrobble.podcast_episode.title}} |
+ {{scrobble.podcast_episode.podcast}} |
+
+ {% endfor %}
+
+
+
+
+
+
+
Latest Video Games
+
+
+
+
+ | Date |
+ Cover |
+ Title |
+ Time played (mins) |
+ Percent complete |
+
+
+
+ {% for scrobble in videogame_scrobble_list %}
+
+ | {{scrobble.timestamp|naturaltime}} |
+ {% if scrobble.videogame_screenshot %}
+  |
+ {% else %}
+ {% if scrobble.videogame.hltb_cover %}
+  |
+ {% endif %}
+ {% endif %}
+ {{scrobble.media_obj.title}} |
+ {{scrobble.playback_position_seconds|natural_duration}} |
+ {{scrobble.percent_played}} |
+
+ {% endfor %}
+
+
+
+
+
+
+
+
Latest Board Games
+
+
+
+
+ | Date |
+ Cover |
+ Title |
+ Time played (mins) |
+
+
+
+ {% for scrobble in boardgame_scrobble_list %}
+
+ | {{scrobble.timestamp|naturaltime}} |
+  |
+ {{scrobble.media_obj.title}} |
+ {{scrobble.playback_position_seconds|natural_duration}} |
+
+ {% endfor %}
+
+
+
+
+
+ {% 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}}
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
Latest Sports
-
-
-
-
- | Date |
- Title |
- Round |
- League |
-
-
-
- {% for scrobble in sport_scrobble_list %}
-
- | {{scrobble.timestamp|naturaltime}} |
- {{scrobble.sport_event.title}} |
- {{scrobble.sport_event.round.name}} |
- {{scrobble.sport_event.round.season.league}} |
-
- {% endfor %}
-
-
-
-
-
-
-
Latest Podcasted
-
-
-
-
- | Date |
- Title |
- Podcast |
-
-
-
- {% for scrobble in podcast_scrobble_list %}
-
- | {{scrobble.timestamp|naturaltime}} |
- {{scrobble.podcast_episode.title}} |
- {{scrobble.podcast_episode.podcast}} |
-
- {% endfor %}
-
-
-
-
-
-
-
Latest Video Games
-
-
-
-
- | Date |
- Cover |
- Title |
- Time played (mins) |
- Percent complete |
-
-
-
- {% for scrobble in videogame_scrobble_list %}
-
- | {{scrobble.timestamp|naturaltime}} |
- {% if scrobble.videogame_screenshot %}
-  |
- {% else %}
- {% if scrobble.videogame.hltb_cover %}
-  |
- {% endif %}
- {% endif %}
- {{scrobble.media_obj.title}} |
- {{scrobble.playback_position_seconds|natural_duration}} |
- {{scrobble.percent_played}} |
-
- {% endfor %}
-
-
-
-
-
-
-
-
Latest Board Games
-
-
-
-
- | Date |
- Cover |
- Title |
- Time played (mins) |
-
-
-
- {% for scrobble in boardgame_scrobble_list %}
-
- | {{scrobble.timestamp|naturaltime}} |
-  |
- {{scrobble.media_obj.title}} |
- {{scrobble.playback_position_seconds|natural_duration}} |
-
- {% endfor %}
-
-
-
-
-
- {% endif %}
+ {% include "scrobbles/_last_scrobbles.html" %}