diff --git a/deluge/ui/webui/templates/classic/torrent_info.html b/deluge/ui/webui/templates/classic/torrent_info.html index f996d2140..505a7b3bd 100644 --- a/deluge/ui/webui/templates/classic/torrent_info.html +++ b/deluge/ui/webui/templates/classic/torrent_info.html @@ -7,6 +7,9 @@ $for id, title, image, flag, method, url, important in toolbar_items: $if (flag > 0) and (id != 'details'): $:render.part_button(method, (url + str(torrent.id)), title, 'tango/' + image) +
+$:render.part_auto_refresh() +
$for id, title, tab in detail_tabs:

$title

$:render[tab](torrent) diff --git a/deluge/ui/webui/templates/white/torrent_info.html b/deluge/ui/webui/templates/white/torrent_info.html new file mode 100644 index 000000000..bf01db826 --- /dev/null +++ b/deluge/ui/webui/templates/white/torrent_info.html @@ -0,0 +1,15 @@ +$def with (torrent) + +$:(render.header(_(torrent.state) + '/' + torrent.name)) +
+
+$:render.part_auto_refresh() +
+$for id, title, tab in detail_tabs: +

$title

+ $:render[tab](torrent) + +
+
+ +$:render.footer()