deluge/deluge/ui/webui/templates/advanced/torrent_info_inner.html
2008-03-09 20:32:11 +00:00

21 lines
472 B
HTML

$def with (torrent, active_tab)
<!--for iframe in javascript mode.-->
<html>
<head>
<title>Deluge:$torrent.name</title>
<link rel="stylesheet" type="text/css" href="/template/static/advanced.css" />
</head>
<body class="inner">
<div id="torrent_info_tabs">
$for id, title, tab in detail_tabs:
$:render.part_tab_button(id, title, active_tab)
</div>
$for id, title, tab in detail_tabs:
$if active_tab == id:
$:render[tab](torrent)
</body>
</html>