tahoe-lafs/src/allmydata/web/introducer.xhtml
hab 4e8e35a7d6 Sequence headers are always shown.
I wasn't sure if that was the case, but I've checked nevow now.
2019-08-14 19:05:37 +01:00

79 lines
2.7 KiB
HTML

<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"><head>
<title>Tahoe-LAFS - Introducer 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>
<h1>Welcome to the Tahoe-LAFS Introducer</h1>
<div class="section" id="this-client">
<h2>This Introducer</h2>
<table class="node-info table-headings-left" t:render="node_data">
<tr><th>My nodeid:</th> <td class="nodeid mine data-chars"><t:slot name="my_nodeid" /></td></tr>
<tr><th>My versions:</th> <td><t:slot name="version" /></td></tr>
<tr><th>Tahoe-LAFS code imported from:</th> <td><t:slot name="import_path" /></td></tr>
</table>
</div>
<div>Announcement Summary: <span t:render="announcement_summary" /></div>
<div>Subscription Summary: <span t:render="client_summary" /></div>
<br />
<div class="section">
<h2>Service Announcements</h2>
<table class="services table-headings-top" t:render="services">
<tr>
<th class="nickname-and-peerid">
<div class="service-nickname">Nickname</div>
<div class="nodeid data-chars">ServerID</div></th>
<th>Announced</th>
<th>Version</th>
<th>Service Name</th>
</tr>
<tr t:render="item">
<td class="nickname-and-peerid">
<div class="nickname"><t:slot name="nickname"/></div>
<div class="nodeid data-chars"><t:slot name="serverid"/></div></td>
<td class="service-announced"><t:attr name="title"><t:slot name="connection-hints"/></t:attr><t:slot name="announced"/></td>
<td class="service-version"><t:slot name="version"/></td>
<td class="service-service-name"><t:slot name="service_name"/></td>
</tr>
<tr t:render="empty"><td>no peers!</td></tr>
</table>
</div>
<div>
<h2>Subscribed Clients</h2>
<table class="services table-headings-top" t:render="subscribers">
<tr>
<th class="nickname-and-peerid">
<div class="service-nickname">Nickname</div>
<div class="nodeid data-chars">Tub ID</div></th>
<th>Connected From</th>
<th>Since</th>
<th>Version</th>
<th>Subscribed To</th>
</tr>
<tr t:render="item">
<td class="nickname-and-peerid">
<div class="nickname"><t:slot name="nickname"/></div>
<div class="nodeid data-chars"><t:slot name="tubid"/></div></td>
<td><t:slot name="connected"/></td>
<td class="service-since"><t:slot name="since"/></td>
<td class="service-version"><t:slot name="version"/></td>
<td class="service-service-name"><t:slot name="service_name"/></td>
</tr>
<tr t:render="empty"><td>no subscribers!</td></tr>
</table>
</div>
<p class="minutia" t:render="node_data">Page rendered at <span><t:slot name="rendered_at" /></span></p>
</body>
</html>