source: trunk/src/allmydata/web/helper.xhtml

Last change on this file was 65315c4, checked in by Sajith Sasidharan <sajith@…>, at 2020-04-22T21:16:33Z

Render a message when helper isn't running

  • Property mode set to 100644
File size: 1.1 KB
Line 
1<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
2  <head>
3    <title>Tahoe-LAFS - Helper Status</title>
4    <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
5    <link href="/icon.png" rel="shortcut icon" />
6    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7  </head>
8  <body>
9
10    <div t:render="helper_running">
11      <h1>Helper Status</h1>
12
13      <h2>Immutable Uploads</h2>
14      <ul t:data="helper_stats">
15        <li>Active: <span t:render="active_uploads" /></li>
16        <li>--</li>
17        <li>Bytes Fetched: <span t:render="upload_bytes_fetched" /></li>
18        <li>Incoming: <span t:render="incoming" /></li>
19        <li>Encoding: <span t:render="encoding" /></li>
20        <li>Bytes Encoded: <span t:render="upload_bytes_encoded" /></li>
21        <li>--</li>
22        <li>Total Requests: <span t:render="upload_requests" /></li>
23        <ul>
24          <li>Already Present: <span t:render="upload_already_present" /></li>
25          <li>Need Upload: <span t:render="upload_need_upload" /></li>
26        </ul>
27      </ul>
28
29    </div>
30
31    <div>Return to the <a href="/">Welcome Page</a></div>
32
33  </body>
34</html>
Note: See TracBrowser for help on using the repository browser.