Add artists column to albums view

This commit is contained in:
mitteneer 2025-03-26 21:38:34 -04:00
parent 11ddf40131
commit a77e1dcaad
12 changed files with 169 additions and 4 deletions

View file

@ -25,8 +25,8 @@ pub fn index(request: *jetzig.Request) !jetzig.View {
try scrobble_view.put("song_name", scrobble.song.name);
try scrobble_view.put("song_id", scrobble.song.id);
try scrobble_view.put("artist_name", "placeholder");
try scrobble_view.put("artist_id", "placeholder");
//try scrobble_view.put("artist_name", "placeholder");
//try scrobble_view.put("artist_id", "placeholder");
try scrobble_view.put("album_name", scrobble.album.name);
try scrobble_view.put("album_id", scrobble.album.id);
try scrobble_view.put("date", scrobble.date);