{% extends "generic/object_list.html" %} {% load buttons %} {% load static %} {% load helpers %} {% block buttons %}
{% endblock buttons %} {% block title %}Device Hardware Notice 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 Supported Unsupported Support (%) 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.valid_percent is not None %} {{ device_aggr.valid_percent }} % {% else %} -- {% endif %} Devices Pie Chart

Device Type Summary

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