{% extends "base.html" %} {% import "_macros.html" as macros %} {% block title %}Server {{ server.name }} | left4me{% endblock %} {% block content %}

Server: {{ server.name }}

{# Lifecycle subblock — uses _server_actions.html which now opens job-log-modal on click #} {% include "_server_actions.html" %} {# Live state — HTMX-loaded into innerHTML #}
{# Config grid — flat auto-fit; uses config_field macro from _macros.html #}
{{ macros.config_field( "Port", ('' ~ server.port ~ '') | safe ) }} {{ macros.config_field( "Blueprint", (('' ~ blueprint.name ~ '') | safe) if blueprint else "—" ) }} {{ macros.config_field( "RCON", ( '••••••••••••' ~ ' ' ~ '' ) | safe ) }} {{ macros.config_field( "Hostname", ( '
' ~ '' ~ '' ~ '' ~ '
' ) | safe, editable=True ) }}
{# Inspection strip — Log / Console / Files with expand-to-modal #}

  
{# ===== Modals ===== #} {% endblock %}