{% extends "base.html" %} {% block title %}Monitoring — MediaForge{% endblock %} {% block styles %} {% endblock %} {% block content %} {# Monitoring — built exactly like the Settings / Integrations pages: one page, a floating side menu switching client-side between panels (no reload). The Statistics / Download History / Uptime bodies are the same partials the standalone routes use, so there is a single source of truth. #}
{# Full-width page header on top (like Settings/Integrations), then the floating menu + panels below it. #} {% include "_monitoring_nav.html" %}
{{ _('Statistics') }}
{{ _('Overview of your download activity') }}
{{ _('Open') }}
{{ _('Download History') }}
{{ _('Every downloaded episode with start and end time') }}
{{ _('Open') }}
{% if uptime_enabled %}
UpTime
{{ _('Live monitoring of your source sites — reachability and real-site verification') }}
{{ _('Open') }}
{% endif %}
{% include "_stats_body.html" %}
{% include "_history_body.html" %}
{% if uptime_enabled %}
{% include "_uptime_body.html" %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}