{% extends "base.html" %} {% block title %}Dashboard - PXE Server Manager{% endblock %} {% block content %}

Dashboard

PXE Services
{% for svc in services %} {% endfor %}
Service Status State
{{ svc.name }} {{ "Running" if svc.active else "Stopped" }} {{ svc.state }}
Deployment Images
{% for img in images %} {% endfor %}
Image Deploy Content unattend.xml Path Actions
{{ img.friendly_name }}
{{ img.image_type }}
{% if img.has_content %} Present {% else %} Empty {% endif %} {% if img.has_unattend %} Exists {% else %} Missing {% endif %} {{ img.deploy_path }} Edit Unattend
{% endblock %}