{% 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 %}Device 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 Compliance (%) Summary Export Data
Devices {% if device_aggr.total is not None %} {{ device_aggr.total }} {% else %} -- {% endif %} {% if device_aggr.valid is not None %} {{ device_aggr.valid }} {% else %} -- {% endif %} {% if device_aggr.invalid is not None %} {{ device_aggr.invalid }} {% else %} -- {% endif %} {% if device_aggr.no_software is not None %} {{ device_aggr.no_software }} {% else %} -- {% endif %} {% if device_aggr.valid_percent is not None %} {{ device_aggr.valid_percent }} % {% else %} -- {% endif %} Devices Pie Chart

Device Type Summary

{% include 'utilities/obj_table.html' %}
{% include 'inc/search_panel.html' %}
{% table_config_form table table_name="ObjectTable" %} {% endblock %} {% block javascript %} {% endblock %}