{% extends "generic/object_list.html" %} {% load buttons %} {% load static %} {% load helpers %} {% block buttons %}
{% endblock buttons %} {% block title %}Inventory Item Software Validation Reports{% endblock title %} {% block table %} {% if report_last_run is None %}

-- No validation results found, you need to run the report at least once before seeing the results! --

{% else %}

Last full run of the report: {{ report_last_run }} - {{ report_last_run|timesince }} ago

{% endif %} {% if bar_chart is not None %} {% block graphic %}
Platform Bar Chart
{% endblock graphic %} {% else %} -- Can't generate visualization, no config validation found. -- {% endif %}

Executive Summary

Type Total Valid Invalid No Software Validation (%) Summary Export Data
Inventory Items {% if inventory_aggr.total is not None %} {{ inventory_aggr.total }} {% else %} -- {% endif %} {% if inventory_aggr.valid is not None %} {{ inventory_aggr.valid }} {% else %} -- {% endif %} {% if inventory_aggr.invalid is not None %} {{ inventory_aggr.invalid }} {% else %} -- {% endif %} {% if inventory_aggr.no_software is not None %} {{ inventory_aggr.no_software }} {% else %} -- {% endif %} {% if inventory_aggr.valid_percent is not None %} {{ inventory_aggr.valid_percent }} % {% else %} -- {% endif %} Inventory Pie Chart

Inventory Item Part ID Summary

{% include table_template|default:"panel_table.html" %} {% include "inc/paginator.html" with paginator=table.paginator page=table.page %}
{% endblock table %}