mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 12:04:51 +00:00
torrent-index use '-' for unknown/empty values
This commit is contained in:
parent
eeac163a9d
commit
1c33177a63
1 changed files with 13 additions and 4 deletions
|
@ -100,19 +100,28 @@ $for torrent in torrent_list:
|
|||
</td>
|
||||
$if (not get('category')):
|
||||
<td>$torrent.category</td>
|
||||
<td>$torrent.num_seeds ($torrent.total_seeds)</td>
|
||||
<td>$torrent.num_peers ($torrent.total_peers)</td>
|
||||
<td>
|
||||
$if torrent.total_seeds != -1:
|
||||
$torrent.num_seeds ($torrent.total_seeds)
|
||||
$else:
|
||||
-
|
||||
</td>
|
||||
<td>
|
||||
$if torrent.total_peers != -1:
|
||||
$torrent.num_peers ($torrent.total_peers)</td>
|
||||
$else:
|
||||
-
|
||||
<td>
|
||||
$if (torrent.download_rate):
|
||||
$fspeed(torrent.download_rate)
|
||||
$else:
|
||||
|
||||
-
|
||||
</td>
|
||||
<td>
|
||||
$if (torrent.upload_rate):
|
||||
$fspeed(torrent.upload_rate)
|
||||
$else:
|
||||
|
||||
-
|
||||
</td>
|
||||
<td>$ftime(torrent.eta)</td>
|
||||
<td>$("%.3f" % torrent.distributed_copies)</td>
|
||||
|
|
Loading…
Add table
Reference in a new issue