@* Blurb sits between the header and the track-list divider. *@
@if (ViewModel.Tracks.Count == 0)
{
No tracks in this cut yet.
}
else
{
@for (var i = 0; i < ViewModel.Tracks.Count; i++)
{
var track = ViewModel.Tracks[i];
var index = i;
@track.TrackNumber
@track.TrackName
@* Append this single track to the queue (append-only, does not play). *@
}
}