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

Suggested Action List

{% for channel in action_list %} {% endfor %}
Channel ID Peer Alias Outbound Liquidity Capacity Inbound Liquidity Unsettled oRate oBase o7D i7D iRate iBase AR Action
{{ channel.short_chan_id }} {% if channel.alias == '' %}{{ channel.remote_pubkey|slice:":12" }}{% else %}{{ channel.alias }}{% endif %} {{ channel.local_balance|intcomma }} {{ channel.outbound_percent }}%
{{ channel.remote_balance|intcomma }} {{ channel.inbound_percent }}% {{ channel.unsettled_balance|intcomma }} {{ channel.local_fee_rate|intcomma }} {{ channel.local_base_fee|intcomma }} {{ channel.o7D|intcomma }}M {{ channel.routed_out_7day }} {{ channel.i7D|intcomma }}M {{ channel.routed_in_7day }} {{ channel.remote_fee_rate|intcomma }} {{ channel.remote_base_fee|intcomma }}
{% csrf_token %}
{{ channel.output }}
{% endif %} {% if not action_list %}

Nothing to see here! Great job!

{% endif %} {% endblock %}