{% extends 'base.html' %} {% load buttons %} {% load static %} {% load helpers %} {% block content %}
{% if request.user.is_authenticated and table_config_form %} {% endif %} {% if request.user.is_authenticated and 'export' in action_buttons %} {% export_button content_type %} {% endif %}

{% block title %}Inventory Item Software Validation Reports{% endblock %}

{% 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 %} {% 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 'utilities/obj_table.html' %}
{% include 'inc/search_panel.html' %}
{% table_config_form table table_name="ObjectTable" %} {% endblock %} {% block javascript %} {% endblock %}