diff --git a/deluge/ui/webui/templates/deluge/tab_meta.html b/deluge/ui/webui/templates/deluge/tab_meta.html
index b6309f9fe..09c8f919a 100644
--- a/deluge/ui/webui/templates/deluge/tab_meta.html
+++ b/deluge/ui/webui/templates/deluge/tab_meta.html
@@ -27,14 +27,6 @@ $def with (torrent)
$torrent.num_pieces x $fsize(torrent.piece_length) |
-$_('Allocation'): |
-
-$if torrent.compact:
- $_('Compact')
-$else:
- $_('Full')
- |
-
@@ -55,12 +47,6 @@ $fspeed(torrent.download_payload_rate) |
$_('Availability'): |
$("%.3f" % torrent.distributed_copies) |
-
-
-$_('Queue Position'): |
-$torrent.queue |
-
-
@@ -73,18 +59,39 @@ $fspeed(torrent.download_payload_rate) |
$_('# Of Files'): |
$torrent.num_files |
-$_('Tracker'): |
-$(crop(torrent.tracker, 25)) |
-
-$_('Tracker Status'): |
-$(crop(torrent.tracker_status, 25)) |
-
$_('Next Announce'): |
$torrent.next_announce |
-$('Save Path'): |
-$crop_left(torrent.save_path, 25) |
-
-
+$_('Queue Position'): |
+$torrent.queue |
+
+$_('Allocation'): |
+
+$if torrent.compact:
+ $_('Compact')
+$else:
+ $_('Full')
+ |
+
+
+ |
+
+
+ $('Hash'): |
+ $torrent.id |
+
+ $_('Tracker'): |
+ $(crop(torrent.tracker, 200)) |
+
+ $_('Tracker Status'): |
+ $(crop(torrent.tracker_status, 200)) |
+
+
+
+ $('Save Path'): |
+ $crop_left(torrent.save_path, 200) |
+
+
+
diff --git a/deluge/ui/webui/templates/white/template_style.css b/deluge/ui/webui/templates/white/template_style.css
index 3de076919..befa5ca8c 100644
--- a/deluge/ui/webui/templates/white/template_style.css
+++ b/deluge/ui/webui/templates/white/template_style.css
@@ -212,6 +212,11 @@ div.progress_bar{
#torrent_info_tabs{
background-color:#B5EDBC;
}
+
+td.info_label {
+ width:100px;
+}
+
/*config:*/
#config_chooser {
margin-left:20px;
diff --git a/deluge/ui/webui/webserver_common.py b/deluge/ui/webui/webserver_common.py
index c2ae27466..f57014baf 100644
--- a/deluge/ui/webui/webserver_common.py
+++ b/deluge/ui/webui/webserver_common.py
@@ -52,7 +52,7 @@ TORRENT_KEYS = ['name', 'total_size', 'num_files', 'num_pieces', 'piece_length',
'total_wanted', 'tracker', 'trackers', 'tracker_status', 'save_path',
'files', 'file_priorities', 'compact', 'max_connections',
'max_upload_slots', 'max_download_speed', 'prioritize_first_last',
- 'private','max_upload_speed','queue','peers',
+ 'private','max_upload_speed','queue','peers'
#builtin plugins:
'tracker_name' #organize-plugin
]