{# Extends the base layout template #} {% extends "base.html" %} {# --- Page Title Block --- #} {# Sets the browser window/tab title, includes server name #} {% block title %}{{ super() }} - Backup Menu: {{ server_name }}{% endblock %} {# --- Head Scripts Block --- #} {# Includes JavaScript files needed for this page's actions #} {% block head_scripts %} {# Utility functions (showStatusMessage, sendServerActionRequest) #} {# Backup/Restore specific frontend functions #} {% endblock %} {# --- Main Content Block --- #} {# Overrides the content block in base.html #} {% block content %} {# Main heading for the page #}
Server: {{ server_name }}
{# --- Status Message Area --- #} {# Targeted by JavaScript (showStatusMessage) to display feedback #} {# Section containing the menu options #} {# End of .backup-menu-section #} {% endblock %} {# --- Optional Body Scripts Block --- #} {% block body_scripts %} {# #} {% endblock %}