{% extends "base.html" %} {% block title %} {{ block.super }} - Opens{% endblock %} {% block content %} {% load humanize %} {% if open_list %}

Suggested Open List

{% for node in open_list %} {% endfor %}
Node Pubkey Node Alias Successful Payments Routed Amount Routed Fees Paid Effective PPM Volume Score Savings By Volume
{{ node.node_pubkey }} {% if node.alias == '' %}---{% else %}{{ node.alias }}{% endif %} {{ node.count }} {{ node.amount|add:"0"|intcomma }} {{ node.fees|add:"0"|intcomma }} {{ node.ppm|add:"0"|intcomma }} {{ node.score }} {{ node.sum_cost_to|add:"0"|intcomma }}
{% else %}

No potential peers can be calculated yet, try waiting until you have some payment data.

{% endif %} {% if avoid_list %}

Avoid/Exclude List

{% for node in avoid_list %} {% endfor %}
Updated Node Pubkey Notes Remove
{{ node.updated|naturaltime }} {{ node.pubkey }} {% if node.notes == '' %}---{% else %}{{ node.notes }}{% endif %}
{% csrf_token %}
{% else %}

No node added to the exclusion list yet. Add nodes here you want to avoid connecting to in the future.

{% endif %}

Add Node To Exclusion List Or Update Existing Notes

{% csrf_token %}
{% endblock %}