{% extends "base.html" %} {% block title %} {{ block.super }} - Watch Towers{% endblock %} {% block content %} {% load humanize %} {% if stats %}

Watch Tower Stats

Stat Value
Total Backups {{ stats.num_backups|intcomma }}
Pending Backups {{ stats.num_pending_backups|intcomma }}
Failed Backups {{ stats.num_failed_backups|intcomma }}
Sessions Acquired {{ stats.num_sessions_acquired|intcomma }}
Sessions Exhausted {{ stats.num_sessions_exhausted|intcomma }}
{% endif %} {% if active_towers %}

Active Towers

{% for tower in active_towers %} {% endfor %}
Pubkey Address Sessions Remove
{{ tower.pubkey }} {{ tower.address }} {{ tower.num_sessions|intcomma }}
{% csrf_token %}
{% endif %} {% if inactive_towers %}

Inactive Towers

{% for tower in inactive_towers %} {% endfor %}
Pubkey Address Sessions Enable Delete
{{ tower.pubkey }} {{ tower.address }} {{ tower.num_sessions|intcomma }}
{% csrf_token %}
{% csrf_token %}
{% endif %} {% if not active_towers and not inactive_towers %}

No watch towers found!

{% endif %}

Add A Watch Tower

{% csrf_token %}
{% endblock %}