{% extends 'base.html' %} {% block content %}

Add A Node

{{ form.csrf_token }} {% for f in form %} {% if f.name != 'csrf_token' %}
{{ f.label }} {{ f }}
{% endif %} {% endfor %}
    {% for field, errors in form.errors.items() %}
  • {{ form[field].label }}: {{ ', '.join(errors) }}
  • {% endfor %}

Find a Node


{% if nodes %} {% for node in nodes %} {% endfor %}
URL Available Network Height Last Checked History
{% if node.is_tor %}{% endif %}{{ node.url }} {% if node.available %}
{% else %}
{% endif %}
{{ node.nettype }} {{ node.last_height }} {{ node.datetime_checked | humanize }} {% for hc in node.healthchecks %} {% if loop.index > loop.length - 11 %} {% endif %} {% endfor %}
{% if page > 1 %} Back {% endif %} {% if page < total_pages and total_pages > 0 %} Next {% endif %} {% else %}

No nodes in the database yet...

{% endif %}
{% if 'onion' not in request.args %}{% endif %}
{% endblock %}