{% extends "base.html" %} {% block title %}{{ friendly_name }} - Configuration{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ friendly_name }}

Image Configuration — OS Selection: {{ config.os_selection or 'Not set' }}
Edit Unattend
{# ==================== SECTION 1: Hardware Models ==================== #}
Hardware Models {{ config.hardware_models|length }}
{% for hm in config.hardware_models %} {% endfor %}
# Model Driver Family ID On Disk
{{ loop.index }} {% if hm._on_disk %} Yes {% else %} No {% endif %}
{% if not config.hardware_models %}
No hardware models configured.
{% endif %}
{# ==================== SECTION 2: Driver Packs ==================== #}
Driver Packs {{ config.drivers|length }}
{% for drv in config.drivers %} {% endfor %}
# Family Models File Name OS IDs On Disk
{{ loop.index }} {{ drv.family }} {{ drv.models }} {{ drv.FileName or drv.get('fileName','') }} {{ drv.osId }} {% if drv._on_disk %} Yes {% else %} No {% endif %}
{% if not config.drivers %}
No driver packs configured.
{% endif %}
{# Orphan drivers sub-section #} {% if config.orphan_drivers %} {% endif %}
{# ==================== SECTION 3: Operating Systems ==================== #}
Operating Systems {{ config.operating_systems|length }}
{% for entry in config.operating_systems %} {% set osv = entry.operatingSystemVersion %} {% endfor %}
# Product Name Version Build ID Active WIM On Disk
{{ loop.index }} {{ osv.productName }} {{ osv.versionNumber }} {{ osv.buildNumber }} {{ osv.id }} {% if osv.isActive %} Active {% else %} Inactive {% endif %} {% if entry._on_disk %} Yes {% else %} No {% endif %}
{% if not config.operating_systems %}
No operating systems configured.
{% endif %}
{# ==================== SECTION 4: Packages ==================== #}
Packages {{ config.packages|length }}
{% for pkg in config.packages %} {% endfor %}
# Name Comment File OS IDs Enabled On Disk
{{ loop.index }} {{ pkg.name }} {{ pkg.comment }} {{ pkg.fileName or pkg.get('FileName','') }} {{ pkg.osId }} {% if pkg.enabled %} Yes {% else %} No {% endif %} {% if pkg._on_disk %} Yes {% else %} No {% endif %}
{% if not config.packages %}
No packages configured.
{% endif %}
{% endblock %}