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.

36 lines
866 B

{% extends 'index.html' %}
8 years ago
{% block main %}
{% if error %}
<h2>{{ error.statusMessage }}</h2>
{% else %}
<h2>{{ title }}</h2>
<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 | bandwidth }}</td>
<td>{{ node | uptime }}</td>
<td>{{ node.country_name }}</td>
<td>{{ node.flags | join(', ') }}</td>
<td>{{ node.type | title }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{% endblock %}