{# Extends the base layout template #} {% extends "base.html" %} {# --- Page Title Block --- #} {% block title %}{{ super() }} - Configure Service: {{ server_name }}{% endblock %} {# --- Head Scripts Block --- #} {# Include JavaScript files needed for this page #} {% block head_scripts %} {# Core utilities #} {# Contains saveServiceSettings function and toggle switch JS logic #} {# server_actions.js might be needed if saveServiceSettings calls start_server #} {% endblock %} {# --- Main Content Block --- #} {% block content %} {# Main heading for the page #}
Server: {{ server_name }}
{% if new_install %}
{# Indicator for multi-step installation workflow #}
{# Assuming this is the final step? Adjust number if needed. #}
(Step 4 of 4 for New Installation)
{% endif %}
Configure automatic behavior for this server.
{# --- Auto-Update Toggle (Common to Linux/Windows) --- #} {# This setting controls whether the server checks for updates when started #}