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.
52 lines
1.5 KiB
52 lines
1.5 KiB
{% extends 'index.html' %}
|
|
|
|
{% block main %}
|
|
|
|
{% if error %}
|
|
<h2>{{ 'Bad Search Query' if error.statusCode == 400 and req.query.s else error.statusMessage }}</h2>
|
|
{% else %}
|
|
<h2>{{ title }}</h2>
|
|
{% if nodes.length %}
|
|
<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>
|
|
{% else %}
|
|
<h3>No matches</h3>
|
|
{% endif %}
|
|
{% if req.query.s %}
|
|
<div class="pagination">
|
|
{% if req.query.p > 1 %}
|
|
<a href="{{ req | pagination('prev') }}">< Prev</a>
|
|
{% endif %}
|
|
{% if req.query.p > 1 and nodes.length == numOfNodes %}
|
|
<span class="divider">-</span>
|
|
{% endif %}
|
|
{% if nodes.length == numOfNodes %}
|
|
<a href="{{ req | pagination('next') }}">Next ></a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|