mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
12 lines
467 B
HTML
12 lines
467 B
HTML
<td>
|
|
<input type="checkbox" class="checkbox" (click)="$event.stopPropagation()" [(ngModel)]="selected" />
|
|
</td>
|
|
<td>
|
|
<span *ngIf="song.length > 1" class="rounded-sm bg-accent text-accent-content px-1 mr-1 font-bold">{{ song.length }}</span> {{ song[0].name }}
|
|
</td>
|
|
<td>{{ song[0].artist }}</td>
|
|
<td>{{ song[0].album || 'Various' }}</td>
|
|
<td>{{ song[0].genre || 'Various' }}</td>
|
|
<td>{{ song[0].year || 'Various' }}</td>
|
|
<!-- TODO: "Various" will never display -->
|