source: trunk/src/allmydata/web/map-update-status.xhtml

Last change on this file was 13bbda1, checked in by Sajith Sasidharan <sajith@…>, at 2020-05-06T17:21:26Z

Render privkey only when there's a privkey

  • Property mode set to 100644
File size: 1.2 KB
Line 
1<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
2  <head>
3    <title>Tahoe-LAFS - Mutable File Servermap Update 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
9  <body>
10
11    <h1>Mutable File Servermap Update Status</h1>
12
13    <ul>
14      <li>Started: <span t:render="started"/></li>
15      <li>Finished: <span t:render="finished"/></li>
16      <li>Storage Index: <span t:render="si"/></li>
17      <li>Helper?: <span t:render="helper"/></li>
18      <li>Progress: <span t:render="progress"/></li>
19      <li>Status: <span t:render="status"/></li>
20    </ul>
21
22    <h2>Update Results</h2>
23
24    <ul>
25      <t:transparent t:render="problems" />
26      <li>Total: <span t:render="time_total" /></li>
27      <ul>
28        <li>Initial Queries: <span t:render="time_initial_queries" /></li>
29        <t:transparent t:render="privkey_from" />
30        <li>Cumulative Verify: <span t:render="time_cumulative_verify" /></li>
31      </ul>
32      <li t:render="server_timings" />
33    </ul>
34
35    <div>Return to the <a href="/">Welcome Page</a></div>
36
37  </body>
38</html>
Note: See TracBrowser for help on using the repository browser.