{# Extends the base layout template #} {% extends "base.html" %} {# --- Page Title Block --- #} {% block title %}{{ super() }} - Monitor Server: {{ server_name }}{% endblock %} {# --- Main Content Block --- #} {% block content %} {# Main heading for the page #}

Server Monitor

{# Display the server context #}

Server: {{ server_name }}

{# Section containing the monitor output #}
{# --- Status Display Area --- #}
Loading server status...
{# --- Navigation Link --- #}
« Back to Dashboard
{# --- End .monitor-section --- #} {% endblock %} {% block body_scripts %} {% endblock %}