{% extends "admin/base_site.html" %} {% load i18n admin_static cache %} {% block title %} {% trans "Reports" %} {% endblock %} {% block content %} {% cache 3600 report cache_key %}

{{ report.name }} {% trans 'Last update:' %} {% now "SHORT_DATETIME_FORMAT" %}

{{ report.description }}


{% if report.with_modes %} {% endif %} {% if report.with_datacenters and mode == 'dc' %} {% endif %} {% block report_content %}
    {% for node in result %} {% include "reports/report_tree.html" %} {% endfor %}
{% endblock %}
{% endcache %} {% endblock %} {% block extra_scripts %} {{ block.super }} {% endblock %}