You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.3 KiB
HTML
76 lines
2.3 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="index" class="container">
|
|
|
|
<div id="addnode" class="pure-g center section">
|
|
<div class="title pure-u-1">
|
|
<h2>Add A Node</h2>
|
|
</div>
|
|
<form method="POST" action="{{ url_for('add') }}" class="pure-form pure-u-1">
|
|
{{ form.csrf_token }}
|
|
{% for f in form %}
|
|
{% if f.name != 'csrf_token' %}
|
|
<div class="form-group">
|
|
{{ f.label }}
|
|
{{ f }}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<ul>
|
|
{% for field, errors in form.errors.items() %}
|
|
<li>{{ form[field].label }}: {{ ', '.join(errors) }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<button type="submit" class="pure-button pure-button-primary">Submit</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div id="nodes" class="pure-u-1 center section">
|
|
<h2>Find a Node</h2>
|
|
{% if nodes %}
|
|
<table class="pure-table pure-table-horizontal pure-table-striped center">
|
|
<thead>
|
|
<tr>
|
|
<th>URL</th>
|
|
<th>Tor</th>
|
|
<th>Available</th>
|
|
<th>Network</th>
|
|
<th>Height</th>
|
|
<th>Last Checked</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for node in nodes %}
|
|
<tr>
|
|
<td>{{ node.url }}</td>
|
|
<td>{{ node.is_tor }}</td>
|
|
<td>{{ node.available }}</td>
|
|
<td>{{ node.nettype }}</td>
|
|
<td>{{ node.last_height }}</td>
|
|
<td>{{ node.datetime_checked | humanize }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% if page > 1 %}
|
|
<a href="/?page={{ page - 1 }}" class="pure-button btn">Back</a>
|
|
{% endif %}
|
|
{% if page < total_pages and total_pages > 0 %}
|
|
<a href="/?page={{ page + 1 }}" class="pure-button btn">Next</a>
|
|
{% endif %}
|
|
{% else %}
|
|
<p>No nodes in the database yet...</p>
|
|
{% endif %}
|
|
<br>
|
|
<a href="/?nettype=mainnet"><button class="pure-button search-btn">Mainnet</button></a>
|
|
<a href="/?nettype=testnet"><button class="pure-button search-btn">Testnet</button></a>
|
|
<a href="/?nettype=stagenet"><button class="pure-button search-btn">Stagenet</button></a>
|
|
<a href="/?crypto=wownero"><button class="pure-button search-btn wownero">Wownero</button></a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|