From 41ab0dc88844acf0b36b0f7e5f45c938878ec062 Mon Sep 17 00:00:00 2001 From: mitteneer Date: Thu, 17 Apr 2025 00:26:56 -0400 Subject: [PATCH] Remove artists column from views I kinda just didn't want to deal with it while implementing the raw sql. Bringing it back is my next priority, but I want to do the searching in a nice way, and I'm not sure how to do that yet --- src/app/views/albums/index.zmpl | 6 ------ src/app/views/scrobbles/index.zmpl | 6 ------ src/app/views/songs/index.zmpl | 6 ------ 3 files changed, 18 deletions(-) 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}} }