diff --git a/src/app/views/albums/index.zmpl b/src/app/views/albums/index.zmpl
index 2c259a6..7de3b87 100644
--- a/src/app/views/albums/index.zmpl
+++ b/src/app/views/albums/index.zmpl
@@ -10,7 +10,6 @@
| Name |
-Artist(s) |
Scrobbles |
@@ -18,11 +17,6 @@
@for (.albums) |album| {
| {{album.name}} |
-
- @for (album.get("artist_info").?) |ai| {
- {{ai.name}}
- }
- |
{{album.scrobbles}} |
}
diff --git a/src/app/views/scrobbles/index.zmpl b/src/app/views/scrobbles/index.zmpl
index 377f50f..26657ff 100644
--- a/src/app/views/scrobbles/index.zmpl
+++ b/src/app/views/scrobbles/index.zmpl
@@ -10,7 +10,6 @@
| Song |
-Artist(s) |
Album |
Date |
@@ -19,11 +18,6 @@
@for (.scrobbles) |scrobble| {
| {{scrobble.song_name}} |
-
- @for (scrobble.get("artist_info").?) |ai| {
- {{ai.name}}
- }
- |
{{scrobble.album_name}} |
{{scrobble.date}} |
diff --git a/src/app/views/songs/index.zmpl b/src/app/views/songs/index.zmpl
index a0a1128..85eaa25 100644
--- a/src/app/views/songs/index.zmpl
+++ b/src/app/views/songs/index.zmpl
@@ -10,7 +10,6 @@
| Name |
-Artists(s) |
Scrobbles |
@@ -18,11 +17,6 @@
@for (.songs) |song| {
| {{song.name}} |
-
- @for (song.get("artist_info").?) |ai| {
- {{ai.name}}
- }
- |
{{song.scrobbles}} |
}