{% 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 %} {% for method, stats in report.result.data.items %} {% endfor %} {% endfor %}
Name Status Description Last Run
{{ report.name }} {% include 'extras/inc/job_label.html' with result=report.result %} {{ report.description|placeholder }} {% if report.result %} {{ report.result.created }} {% else %} Never {% endif %}
{{ 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 %}