{% extends "base.html" %} {% block title %} {{ block.super }} - Inbound Fee Log{% endblock %} {% block content %} {% load humanize %} {% if inbound_fee_log %}

Inbound Fee Log

{% for log in inbound_fee_log %} {% endfor %}
Timestamp Channel ID Peer Alias Setting Old Value New Value
{{ log.timestamp|naturaltime }} {{ log.chan_id }} {% if log.peer_alias == '' %}---{% else %}{{ log.peer_alias }}{% endif %} {{ log.setting }} {{ log.old_value }} log.old_value %}style="background-color: rgba(46,160,67,0.15)"{% else %}style="background-color: rgba(248,81,73,0.15)"{% endif %}>{{ log.new_value }}
{% endif %} {% if not inbound_fee_log %}

No inbound fee logs to see here yet!

{% endif %} {% endblock %}