{% extends "base.html" %} {% block title %}OS Version Compliance{% endblock %} {% block content %}

OS Version Dashboard

Current OS version distribution across network devices

{{ stats.total_devices }}
Total Devices
{{ stats.devices_with_version }}
With Version Data
{{ stats.unique_versions }}
Unique Versions
{{ stats.coverage_pct }}%
Version Coverage
{% if chart_data %}

Top 10 OS Versions by Device Count

{% endif %}

Version Distribution by Vendor

Export Excel
{% for vendor in vendor_summary %} {% endfor %}
Vendor Total Devices Unique Versions Actions
{{ vendor.vendor or 'Unknown' }} {{ vendor.total_devices }} {{ vendor.unique_versions }} {% if vendor.vendor %} View Details {% endif %}

All OS Versions ({{ version_distribution|length }})

{% for version in version_distribution %} {% endfor %}
Vendor OS Version Device Count Sites Example Device
{{ version.vendor or 'Unknown' }} {{ version.os_version }} {{ version.device_count }} {{ version.sites.split(',')|length if version.sites else 0 }} {% if version.example_device_id %} {{ version.example_device_name }} {% endif %}
{% endblock %}