diff --git a/client/src/app/torrent-table/torrent-table.component.html b/client/src/app/torrent-table/torrent-table.component.html index d441002..aaf146e 100644 --- a/client/src/app/torrent-table/torrent-table.component.html +++ b/client/src/app/torrent-table/torrent-table.component.html @@ -21,7 +21,7 @@ }
- +
@@ -84,6 +84,35 @@
+
+ @for (torrent of torrents | sort: sortProperty : sortDirection; track torrent.torrentId) { +
+
+ +
+
+

{{ torrent.rdName }}

+
+ {{ torrent | status }} + @if (torrent.category) { + {{ torrent.category }} + } +
+
+ Size {{ torrent.rdSize | filesize }} + Seeders {{ torrent.rdSeeders }} + Files {{ torrent.files.length | number }} + Downloads {{ torrent.downloads.length | number }} +
+
+
+ } +
+
@if (torrents.length > 0) {