{% extends 'cmdb/base.html' %} {% load icons %} {% load query %} {% load bob %} {% block content %} {% if report_kind == 'top_changes' %}

CMDB Reports - Top CI Changes

{% include 'cmdb/reports/include_params.html' %} {% elif report_kind == 'top_problems' %}

CMDB Reports - Top CI Problems

{% include 'cmdb/reports/include_params.html' %} {% elif report_kind == 'top_incidents' %}

CMDB Reports - Top CI Incidents

{% include 'cmdb/reports/include_params.html' %} {% elif report_kind == 'usage' %}

CMDB Reports - Unchanged Configuration Items

{% include 'cmdb/reports/include_params.html' %} {% endif %} {% table_header columns url_query sort fugue_icons=1 %} {% for change in bob_page %} {% endfor %}
{{ change.0 }} {{ change.1.name}} {{ change.1.type }} {% for t in change.1.get_technical_owners %} {{ t }} {% endfor %} {% for t in change.1.get_business_owners %} {{ t }} {% endfor %}
{% pagination bob_page url_query=url_query show_all=0 show_csv=0 fugue_icons=1 %} {% endblock %}