{% 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
| Pubkey |
Address |
Sessions |
Remove |
{% for tower in active_towers %}
| {{ tower.pubkey }} |
{{ tower.address }} |
{{ tower.num_sessions|intcomma }} |
|
{% endfor %}
{% endif %}
{% if inactive_towers %}
Inactive Towers
| Pubkey |
Address |
Sessions |
Enable |
Delete |
{% for tower in inactive_towers %}
| {{ tower.pubkey }} |
{{ tower.address }} |
{{ tower.num_sessions|intcomma }} |
|
|
{% endfor %}
{% endif %}
{% if not active_towers and not inactive_towers %}
No watch towers found!
{% endif %}
{% endblock %}