{% extends '_base.html' %} {% load helpers %} {% block content %}

{% block title %}Reports{% endblock %}

{% if reports %} {% for module, module_reports in reports %}

{{ module|bettertitle }}

{% for report in module_reports %} {% if report.result %} {% else %} {% endif %} {% for method, stats in report.result.data.items %} {% endfor %} {% endfor %}
Name Status Description Last Run
{{ report.name }} {% include 'extras/inc/report_label.html' with result=report.result %} {{ report.description|default:"" }}{{ report.result.created }}Never
{{ method }}
{% endfor %} {% else %}

No reports found.

Reports should be saved to {{ settings.REPORTS_ROOT }}. (This path can be changed by setting REPORTS_ROOT in NetBox's configuration.)

{% endif %}
{% if reports %}
{% for module, module_reports in reports %}
{{ module|bettertitle }}
{% endfor %}
{% endif %}
{% endblock %}