{# Extends the base layout template #} {% extends "base.html" %} {# --- Page Title Block --- #} {% block title %}{{ super() }} - Restore Menu: {{ server_name }}{% endblock %} {# --- Head Scripts Block --- #} {# Include JavaScript files needed for this page's actions (utils, backup_restore) #} {% block head_scripts %} {# backup_restore.js contains triggerRestoreAll and potentially other handlers #} {% endblock %} {# --- Main Content Block --- #} {% block content %} {# Main heading for the page #}
Server: {{ server_name }}
{# --- Status Message Area --- #} {# Targeted by JavaScript (showStatusMessage) #} {# Server-side flash messages (handled by base.html) #} {# Section containing the restore options #} {# --- End .restore-menu-section --- #} {% endblock %}