{% extends 'generic/object_list.html' %} {% load buttons %} {% load static %} {% load helpers %} {% block title %}Overview Reports{% endblock %} {% block breadcrumbs %}
Type | Total | Compliant | Non-Compliant | Compliance (%) | Summary |
---|---|---|---|---|---|
Devices | {% if device_aggr.total is not None %} {{ device_aggr.total }} {% else %} -- {% endif %} | {% if device_aggr.compliants is not None %} {{ device_aggr.compliants }} {% else %} -- {% endif %} | {% if device_aggr.non_compliants is not None %} {{ device_aggr.non_compliants }} {% else %} -- {% endif %} | {% if device_aggr.comp_percents is not None %} {{ device_aggr.comp_percents }} % {% else %} -- {% endif %} | |
Features | {% if feature_aggr.total is not None %} {{ feature_aggr.total }} {% else %} -- {% endif %} | {% if feature_aggr.compliants is not None %} {{ feature_aggr.compliants }} {% else %} -- {% endif %} | {% if feature_aggr.non_compliants is not None %} {{ feature_aggr.non_compliants }} {% else %} -- {% endif %} | {% if feature_aggr.comp_percents is not None %} {{ feature_aggr.comp_percents }} % {% else %} -- {% endif %} |