{%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=data %}


{% elif report_kind == 'top_problems' %}

Top CI Problems


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


{% elif report_kind == 'top_incidents' %}

Top CI Incidents


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


{% elif report_kind == 'usage' %}

Unchanged Configuration Items


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

{% endif %} {% endblock %}