1234567891011121314151617181920212223242526 |
- @inject ApiClient ApiClient
- <table class="table">
- <thead>
- <tr>
- <th scope="col">
- <a href="@TrackSet?.M3U8Path" target="@FnzConst.PlaylistPageTarget" onclick="return BlockDownloadAndOpenHtmlPage(this)">Play all</a>
- </th>
- <th scope="col">@TrackSet?.TotalDuration.SecondToDur()</th>
- <th scope="col">@TrackSet?.TotalBytes.BytesToFileSize()</th>
- </tr>
- </thead>
- <tbody>
- @foreach (var t in (TrackSet?.Tracks).KeepNoEmpty())
- {
- <tr>
- <th scope="row">
- <a href="@t?.Path" target="@FnzConst.PlaylistPageTarget">@((t?.Tag?.Title).NullOrEmptyEscape(t?.Name))</a>
- </th>
- <td>@(t?.Tag?.Duration.SecondToDur() ?? "?")</td>
- <td>@(t?.Tag?.Length.BytesToFileSize() ?? "?")</td>
- </tr>
- }
- </tbody>
- </table>
|