{% extends "base.html" %} {% block title %}Dashboard - PXE Server Manager{% endblock %} {% block content %}
{% set services_up = services | selectattr('active') | list | length %} {% set services_total = services | list | length %}
Services running
{{ services_up }} / {{ services_total }}
{% set images_total = images | list | length %}
Image types
{{ images_total }}
{% set images_ready = images | selectattr('has_content') | list | length %}
Images with content
{{ images_ready }}
{% set unattend_missing = images | rejectattr('has_unattend') | list | length %}
Missing unattend.xml
{{ unattend_missing }}
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 }} Config Unattend
{% endblock %} {% block extra_scripts %} {% endblock %}