torrent-index use '-' for unknown/empty values

This commit is contained in:
Martijn Voncken 2008-02-08 18:47:21 +00:00
parent eeac163a9d
commit 1c33177a63
1 changed files with 13 additions and 4 deletions

View File

@ -100,19 +100,28 @@ $for torrent in torrent_list:
</td> </td>
$if (not get('category')): $if (not get('category')):
<td>$torrent.category</td> <td>$torrent.category</td>
<td>$torrent.num_seeds ($torrent.total_seeds)</td> <td>
<td>$torrent.num_peers ($torrent.total_peers)</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> <td>
$if (torrent.download_rate): $if (torrent.download_rate):
$fspeed(torrent.download_rate) $fspeed(torrent.download_rate)
$else: $else:
&nbsp; -
</td> </td>
<td> <td>
$if (torrent.upload_rate): $if (torrent.upload_rate):
$fspeed(torrent.upload_rate) $fspeed(torrent.upload_rate)
$else: $else:
&nbsp; -
</td> </td>
<td>$ftime(torrent.eta)</td> <td>$ftime(torrent.eta)</td>
<td>$("%.3f" % torrent.distributed_copies)</td> <td>$("%.3f" % torrent.distributed_copies)</td>