47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
$def with (title, active_tab="NONE")
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html>
|
|
<head>
|
|
<title>Deluge:$_('Torrent list')</title>
|
|
<link rel="icon" href="/static/images/deluge_icon.gif" type="image/gif" />
|
|
<link rel="shortcut icon" href="/static/images/deluge_icon.gif" type="image/gif" />
|
|
<link rel="stylesheet" type="text/css" href="/template_style.css" />
|
|
<script language="javascript" src="/static/deluge.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="page">
|
|
|
|
|
|
<table width="100%"><tr>
|
|
<td>
|
|
<div id="home_top">
|
|
<a
|
|
$if 'home' == active_tab:
|
|
class="tab_button_active"
|
|
$else:
|
|
class="tab_button"
|
|
href='/home'>Home</a>
|
|
|
|
<!--ADMIN-TABS-->
|
|
$for id, title, url in admin_pages:
|
|
<a
|
|
$if id == active_tab:
|
|
class="tab_button_active"
|
|
$else:
|
|
class="tab_button"
|
|
href='$url'>$title</a>
|
|
</div>
|
|
|
|
</td><td align="right">
|
|
$#:render.part_auto_refresh()
|
|
|
|
</td><td>
|
|
|
|
</td><td align="right" width="320px">
|
|
$:part_stats()
|
|
</td></tr></table>
|
|
|
|
<hr>
|