Add request date on table for sorting
This commit is contained in:
parent
db1760b36e
commit
1e749a9bfe
1 changed files with 4 additions and 0 deletions
|
|
@ -20,6 +20,7 @@
|
|||
<th (click)="sort('files.length')">Files</th>
|
||||
<th (click)="sort('downloads.length')">Downloads</th>
|
||||
<th (click)="sort('rdSize')">Size</th>
|
||||
<th (click)="sort('added')">Requested</th>
|
||||
<th (click)="sort('status')">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -53,6 +54,9 @@
|
|||
<td>
|
||||
{{ torrent.rdSize | filesize }}
|
||||
</td>
|
||||
<td>
|
||||
{{ torrent.added | date : 'medium' }}
|
||||
</td>
|
||||
<td>
|
||||
{{ torrent | status }}
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in a new issue