torrent-index no - , mimic gtk ui and use 0 or ''
This commit is contained in:
parent
1c33177a63
commit
eee68666ef
|
@ -104,24 +104,24 @@ $for torrent in torrent_list:
|
||||||
$if torrent.total_seeds != -1:
|
$if torrent.total_seeds != -1:
|
||||||
$torrent.num_seeds ($torrent.total_seeds)
|
$torrent.num_seeds ($torrent.total_seeds)
|
||||||
$else:
|
$else:
|
||||||
-
|
0
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
$if torrent.total_peers != -1:
|
$if torrent.total_peers != -1:
|
||||||
$torrent.num_peers ($torrent.total_peers)</td>
|
$torrent.num_peers ($torrent.total_peers)</td>
|
||||||
$else:
|
$else:
|
||||||
-
|
0
|
||||||
<td>
|
<td>
|
||||||
$if (torrent.download_rate):
|
$if (torrent.download_rate):
|
||||||
$fspeed(torrent.download_rate)
|
$fspeed(torrent.download_rate)
|
||||||
$else:
|
$else:
|
||||||
-
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
$if (torrent.upload_rate):
|
$if (torrent.upload_rate):
|
||||||
$fspeed(torrent.upload_rate)
|
$fspeed(torrent.upload_rate)
|
||||||
$else:
|
$else:
|
||||||
-
|
|
||||||
</td>
|
</td>
|
||||||
<td>$ftime(torrent.eta)</td>
|
<td>$ftime(torrent.eta)</td>
|
||||||
<td>$("%.3f" % torrent.distributed_copies)</td>
|
<td>$("%.3f" % torrent.distributed_copies)</td>
|
||||||
|
|
Loading…
Reference in New Issue