-
+ |
$("%.2f" % torrent.progress) %
|
-
+ |
$_('Downloaded'): |
@@ -17,19 +17,19 @@ $def with (torrent)
$fsize(torrent.total_payload_upload) |
-$_('Seeders'): |
-$torrent.num_seeds ($torrent.total_seeds ) |
+
$_('Share Ratio'): |
$("%.3f" % torrent.ratio) |
-$_('Pieces'): |
-$torrent.num_pieces x $fsize(torrent.piece_length) |
-
+$_('Next Announce'): |
+$torrent.next_announce |
+
+
- |
+ |
$_('Speed'): |
@@ -38,29 +38,31 @@ $fspeed(torrent.download_payload_rate) |
$_('Speed'): |
$fspeed(torrent.upload_payload_rate) |
-$_('Peers'): |
-$torrent.num_peers ($torrent.total_peers ) |
$_('ETA'): |
$ftime(torrent.eta) |
-$_('Availability'): |
-$("%.3f" % torrent.distributed_copies) |
+$_('Pieces'): |
+$torrent.num_pieces x $fsize(torrent.piece_length) |
+
- |
+
+ |
+$_('Seeders'): |
+$torrent.num_seeds ($torrent.total_seeds ) |
+
+$_('Peers'): |
+$torrent.num_peers ($torrent.total_peers ) |
+
+$_('Availability'): |
+$("%.3f" % torrent.distributed_copies) |
-$_('Total Size'): |
-$fsize(torrent.total_size) |
-$_('# Of Files'): |
-$torrent.num_files |
-$_('Next Announce'): |
-$torrent.next_announce |
$_('Queue Position'): |
@@ -70,6 +72,21 @@ $else:
$(torrent.queue + 1)
|
+
+
+
+ |
+
+
+$_('Active time'): |
+ TODO |
+
+$_('Seeding time'): |
+ TODO |
+
+$_('Seed rank'): |
+ TODO |
+
$_('Allocation'): |
$if torrent.compact:
@@ -78,5 +95,9 @@ $else:
$_('Full')
|
+ |
+
+
-
+
+
diff --git a/deluge/ui/webui/torrent_options.py b/deluge/ui/webui/torrent_options.py
index 7e2f3ff75..94934b8b5 100644
--- a/deluge/ui/webui/torrent_options.py
+++ b/deluge/ui/webui/torrent_options.py
@@ -41,7 +41,7 @@ class torrent_options:
aclient.set_torrent_max_download_speed(torrent.id, options['max_download_speed'])
aclient.set_torrent_max_upload_slots(torrent.id, options['max_upload_slots'])
aclient.set_torrent_max_upload_speed(torrent.id, options['max_upload_speed'])
- aclient.set_torrent_private_flag(torrent.id, options['private'])
+ #aclient.set_torrent_private_flag(torrent.id, options['private'])
aclient.force_call()