{%extends 'cmdb/base.html'%} {% load icons %} {% load query %} {% block content %}

CMDB Reports


{% if report_kind == 'top_changes' %}

Top CI Changes

{% include 'cmdb/reports/top-ci-changes.html' with rows=top_ci_changes %}


{% elif report_kind == 'top_problems' %}

Top CI Problems

{% include 'cmdb/reports/top-ci-problems.html' with rows=top_ci_problems %}


{% elif report_kind == 'top_incidents' %}

Top CI Incidents

{% include 'cmdb/reports/top-ci-incidents.html' with rows=top_ci_incidents %}


{% elif report_kind == 'usage' %}

Unchanged Configuration Items

{% include 'cmdb/reports/least-ci-changes.html' with rows=least_ci_changes %}

{% endif %}
{% endblock %}