{# Extends the base layout template #} {% extends "base.html" %} {# --- Page Title Block --- #} {% block title %}{{ super() }} - Select World to Import: {{ server_name }}{% endblock %} {# --- Head Scripts Block --- #} {# Include JavaScript files needed for world installation actions #} {% block head_scripts %} {# content_management.js contains the triggerWorldInstall function #} {% 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 world selection list #}Select a world file (.mcworld) to import into server '{{ server_name }}'.
Warning: This will replace the server's current world data!
Available World File | {# Header for the filename #}Action | {# Header for the button #}
---|---|
{{ world_file_path | basename }} | {# Cell containing the import button #}{# Button calls triggerWorldInstall JS function #} |