]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/web/status.xhtml
fef0e804fff1c5dd6d0dc18cae7e879689b7f0e6
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / web / status.xhtml
1 <html xmlns:n="http://nevow.com/ns/nevow/0.1">
2   <head>
3     <title>Tahoe-LAFS - Current Uploads/Downloads</title>
4     <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
5     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6   </head>
7   <body>
8
9 <h1>Upload and Download Status</h1>
10
11
12 <h2>Active Operations:</h2>
13 <table align="left" class="table-headings-top" n:render="sequence" n:data="active_operations">
14   <tr n:pattern="header">
15     <th>Type</th>
16     <th>Storage Index</th>
17     <th>Helper?</th>
18     <th>Total Size</th>
19     <th>Progress</th>
20     <th>Status</th>
21   </tr>
22   <tr n:pattern="item" n:render="row">
23     <td><n:slot name="type"/></td>
24     <td><n:slot name="si"/></td>
25     <td><n:slot name="helper"/></td>
26     <td><n:slot name="total_size"/></td>
27     <td><n:slot name="progress"/></td>
28     <td><n:slot name="status"/></td>
29   </tr>
30   <tr n:pattern="empty"><td>No active operations!</td></tr>
31 </table>
32 <br clear="all" />
33
34 <h2>Recent Operations:</h2>
35 <table align="left" class="table-headings-top" n:render="sequence" n:data="recent_operations">
36   <tr n:pattern="header">
37     <th>Started</th>
38     <th>Type</th>
39     <th>Storage Index</th>
40     <th>Helper?</th>
41     <th>Total Size</th>
42     <th>Progress</th>
43     <th>Status</th>
44   </tr>
45   <tr n:pattern="item" n:render="row">
46     <td><n:slot name="started"/></td>
47     <td><n:slot name="type"/></td>
48     <td><n:slot name="si"/></td>
49     <td><n:slot name="helper"/></td>
50     <td><n:slot name="total_size"/></td>
51     <td><n:slot name="progress"/></td>
52     <td><n:slot name="status"/></td>
53   </tr>
54   <tr n:pattern="empty"><td>No recent operations!</td></tr>
55 </table>
56 <br clear="all" />
57
58 <div>Return to the <a href="/">Welcome Page</a></div>
59
60   </body>
61 </html>