diff --git a/vrobbler/templates/scrobbles/scrobble_all_list.html b/vrobbler/templates/scrobbles/scrobble_all_list.html index e1b5c34..2f4f6c4 100644 --- a/vrobbler/templates/scrobbles/scrobble_all_list.html +++ b/vrobbler/templates/scrobbles/scrobble_all_list.html @@ -27,7 +27,49 @@ {% for scrobble in object_list %} {{ scrobble.timestamp|naturaltime }} - {{ scrobble.get_media_type_display }} + + {% if scrobble.video %} + 🎬 Video + {% elif scrobble.track %} + 🎵 Track + {% elif scrobble.podcast_episode %} + 🎙️ Podcast episode + {% elif scrobble.sport_event %} + ⚽ Sport event + {% elif scrobble.book %} + 📖 Book + {% elif scrobble.paper %} + 📄 Paper + {% elif scrobble.video_game %} + 🎮 Video game + {% elif scrobble.board_game %} + 🎲 Board game + {% elif scrobble.geo_location %} + 📍 GeoLocation + {% elif scrobble.trail %} + 🥾 Trail + {% elif scrobble.beer %} + 🍺 Beer + {% elif scrobble.puzzle %} + 🧩 Puzzle + {% elif scrobble.food %} + 🍔 Food + {% elif scrobble.task %} + ✅ Task + {% elif scrobble.web_page %} + 🌐 Web Page + {% elif scrobble.life_event %} + 🎉 Life event + {% elif scrobble.mood %} + 😊 Mood + {% elif scrobble.brick_set %} + 🧱 Brick set + {% elif scrobble.channel %} + 📺 Channel + {% else %} + Unknown + {% endif %} + {% if scrobble.video %} {{ scrobble.video.title }}