You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.3 KiB

8 years ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tor Explorer</title>
</head>
<body>
<header>
<h1>Tor Explorer</h1>
<form>
<label>
Search
<input type="search" name="s" value="{{ req.query.s }}">
</label>
</form>
</header>
<main>
<table>
<thead>
<tr>
<th>Nickname</th>
<th>Bandwidth</th>
<th>Uptime</th>
<th>Country</th>
<th>Flags</th>
<th>Type</th>
</tr>
</thead>
<tbody>
{% for node in nodes %}
<tr>
<td><a href="/node/{{ node.fingerprint if node.fingerprint else node.hashed_fingerprint }}">{{ node.nickname }}</a></td>
<td>{{ node.advertised_bandwidth }}</td>
<td>{{ node.last_restarted if node.running else 'Down' }}</td>
<td>{{ node.country_name }}</td>
<td>{{ node.flags }}</td>
<td>{{ node.type }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</main>
8 years ago
8 years ago
<footer>
<a target="_blank" href="https://github.com/lukechilds/tor-explorer">Source code</a> - <a target="_blank" href="https://github.com/lukechilds/tor-explorer/issues">Report a bug</a>
</footer>
8 years ago
</body>
</html>