{% extends "base.html" %} {% block title %}File-Echo Subscriptions{% endblock %} {% block content %}

File-Echo Subscriptions

Downstream peers that receive each file area's hatched files.

Add Subscription
{% if subs %} {% for s in subs %} {% endfor %}
AreaPeerActiveCreated
{{ s.file_area.tag if s.file_area else '?' }} {{ s.peer_address }} {% if s.is_active %} active {% else %} paused {% endif %} {{ s.created_at.strftime('%Y-%m-%d') }}
{% else %}
No subscriptions yet — add one above.
{% endif %}
{% endblock %}