{% 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 %}Overview Reports{% endblock %}

{% if bar_chart is not None %} {% block graphic %}
{% endblock %} {% else %} -- Oops, no config compliances found, visual not made! -- {% endif %}

Executive Summary

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 %}

Feature Summary

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