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
This commit is contained in:
mitteneer 2025-04-17 00:26:56 -04:00
parent 27358fe217
commit 41ab0dc888
3 changed files with 0 additions and 18 deletions

View file

@ -10,7 +10,6 @@
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Artist(s)</th>
<th>Scrobbles</th> <th>Scrobbles</th>
</tr> </tr>
</thead> </thead>
@ -18,11 +17,6 @@
@for (.albums) |album| { @for (.albums) |album| {
<tr> <tr>
<td class=cell><a href="/albums/{{album.url}}">{{album.name}}</a></td> <td class=cell><a href="/albums/{{album.url}}">{{album.name}}</a></td>
<td class=cell>
@for (album.get("artist_info").?) |ai| {
<a href="/artists/{{ai.id}}">{{ai.name}}</a>
}
</td>
<td class=cell>{{album.scrobbles}}</td> <td class=cell>{{album.scrobbles}}</td>
</tr> </tr>
} }

View file

@ -10,7 +10,6 @@
<thead> <thead>
<tr> <tr>
<th>Song</th> <th>Song</th>
<th>Artist(s)</th>
<th>Album</th> <th>Album</th>
<th>Date</th> <th>Date</th>
</tr> </tr>
@ -19,11 +18,6 @@
@for (.scrobbles) |scrobble| { @for (.scrobbles) |scrobble| {
<tr> <tr>
<td class=cell><a href="/songs/{{scrobble.song_id}}">{{scrobble.song_name}}</a></td> <td class=cell><a href="/songs/{{scrobble.song_id}}">{{scrobble.song_name}}</a></td>
<td class=cell>
@for (scrobble.get("artist_info").?) |ai| {
<a href="/artists/{{ai.id}}">{{ai.name}}</a>
}
</td>
<td class=cell><a href="/albums/{{scrobble.album_id}}">{{scrobble.album_name}}</a></td> <td class=cell><a href="/albums/{{scrobble.album_id}}">{{scrobble.album_name}}</a></td>
<td class=cell>{{scrobble.date}}</td> <td class=cell>{{scrobble.date}}</td>
</tr> </tr>

View file

@ -10,7 +10,6 @@
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Artists(s)</th>
<th>Scrobbles</th> <th>Scrobbles</th>
</tr> </tr>
</thead> </thead>
@ -18,11 +17,6 @@
@for (.songs) |song| { @for (.songs) |song| {
<tr> <tr>
<td class=cell><a href="/songs/{{song.url}}">{{song.name}}</a></td> <td class=cell><a href="/songs/{{song.url}}">{{song.name}}</a></td>
<td class=cell>
@for (song.get("artist_info").?) |ai| {
<a href="/artists/{{ai.id}}">{{ai.name}}</a>
}
</td>
<td class=cell>{{song.scrobbles}}</td> <td class=cell>{{song.scrobbles}}</td>
</tr> </tr>
} }