{% extends "base.html" %}
{% block title %} {{ block.super }} - Opens{% endblock %}
{% block content %}
{% load humanize %}
{% if open_list %}
Suggested Open List
| Node Pubkey |
Node Alias |
Successful Payments Routed |
Amount Routed |
Fees Paid |
Effective PPM |
Volume Score |
Savings By Volume |
{% for node in open_list %}
| {{ 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 }} |
{% endfor %}
{% else %}
No potential peers can be calculated yet, try waiting until you have some payment data.
{% endif %}
{% if avoid_list %}
Avoid/Exclude List
| Updated |
Node Pubkey |
Notes |
Remove |
{% for node in avoid_list %}
| {{ node.updated|naturaltime }} |
{{ node.pubkey }} |
{% if node.notes == '' %}---{% else %}{{ node.notes }}{% endif %} |
|
{% endfor %}
{% 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
{% endblock %}