Add scrobble count to each artist/album/song view

This commit is contained in:
mitteneer 2025-03-25 15:44:40 -04:00
parent 7ee3abe857
commit 4adbd59e12
7 changed files with 32 additions and 16 deletions

View file

@ -12,6 +12,7 @@
@for (.songs) |song| {
<tr>
<td class=cell><a href="/songs/{{song.url}}">{{song.name}}</a></td>
<td class=cell>{{song.scrobbles}}</td>
</tr>
}
</table>