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

Autopilot Logs

{% for log in autopilot %} {% 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.new_value }}
{% endif %} {% if not autopilot %}

No autopilot logs to see here yet!

Experimental. This will allow LNDg to automatically act upon the suggestions found here.
{% endif %} {% endblock %}