mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-12 16:02:43 +00:00
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
|
|
<head>
|
|
<title>Tahoe-LAFS - Helper Status</title>
|
|
<link href="/tahoe.css" rel="stylesheet" type="text/css"/>
|
|
<link href="/icon.png" rel="shortcut icon" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
<body>
|
|
|
|
<div t:render="helper_running">
|
|
<h1>Helper Status</h1>
|
|
|
|
<h2>Immutable Uploads</h2>
|
|
<ul t:data="helper_stats">
|
|
<li>Active: <span t:render="active_uploads" /></li>
|
|
<li>--</li>
|
|
<li>Bytes Fetched: <span t:render="upload_bytes_fetched" /></li>
|
|
<li>Incoming: <span t:render="incoming" /></li>
|
|
<li>Encoding: <span t:render="encoding" /></li>
|
|
<li>Bytes Encoded: <span t:render="upload_bytes_encoded" /></li>
|
|
<li>--</li>
|
|
<li>Total Requests: <span t:render="upload_requests" /></li>
|
|
<ul>
|
|
<li>Already Present: <span t:render="upload_already_present" /></li>
|
|
<li>Need Upload: <span t:render="upload_need_upload" /></li>
|
|
</ul>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div>Return to the <a href="/">Welcome Page</a></div>
|
|
|
|
</body>
|
|
</html>
|