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

Channel Performance

{% for channel in channels %} {% endfor %}
Channel 7-Day Activity And Revenue APY: {{ apy_7day }}% 30-Day Activity And Revenue APY: {{ apy_30day }}% Channel Health
Channel ID Peer Alias Capacity Routed Out | In Rebal In | Out APY | CV Out Profit | In Routed Out | Routed In Rebal In | Out APY | CV Out Profit | In Updates Opener
{{ channel.short_chan_id }} {% if channel.alias == '' %}{{ channel.remote_pubkey|slice:":12" }}{% else %}{{ channel.alias }}{% endif %} {{ channel.mil_capacity }}M {{ channel.amt_routed_out_7day|intcomma }}M {{ channel.routed_out_7day }} | {{ channel.amt_routed_in_7day|intcomma }}M {{ channel.routed_in_7day }} {{ channel.amt_rebal_in_7day|intcomma }}M {{ channel.rebal_in_7day }} | {{ channel.amt_rebal_out_7day|intcomma }}M {{ channel.rebal_out_7day }} {{ channel.apy_7day }}% {{ channel.cv_7day }}% {{ channel.revenue_7day|intcomma }} {{ channel.profits_7day|intcomma }} | {{ channel.revenue_assist_7day|intcomma }} {{ channel.amt_routed_out_30day|intcomma }}M {{ channel.routed_out_30day }} | {{ channel.amt_routed_in_30day|intcomma }}M {{ channel.routed_in_30day }} {{ channel.amt_rebal_in_30day|intcomma }}M {{ channel.rebal_in_30day }} | {{ channel.amt_rebal_out_30day|intcomma }}M {{ channel.rebal_out_30day }} {{ channel.apy_30day }}% {{ channel.cv_30day }}% {{ channel.revenue_30day|intcomma }} {{ channel.profits_30day|intcomma }} | {{ channel.revenue_assist_30day|intcomma }} {{ channel.updates }}% {% if channel.initiator == True %}Local{% else %}Remote{% endif %}
{% endif %} {% if not channels %}

You dont have any channels to analyze yet!

{% endif %} {% endblock %}