mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
104 lines
5.7 KiB
HTML
104 lines
5.7 KiB
HTML
{% extends 'base.html' %}
|
|
{% load helpers %}
|
|
|
|
{% block content %}
|
|
<h1>{% block title %}Reports{% endblock %}</h1>
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
{% if reports %}
|
|
{% for module, module_reports in reports %}
|
|
<h3><a name="module.{{ module }}"></a>{{ module|bettertitle }}</h3>
|
|
<table class="table table-hover table-headings reports">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Status</th>
|
|
<th>Description</th>
|
|
<th class="text-right">Last Run</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for report in module_reports %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'extras:report' module=report.module name=report.class_name %}" id="{{ report.module }}.{{ report.class_name }}">
|
|
<strong>{{ report.name }}</strong>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
{% include 'extras/inc/job_label.html' with result=report.result %}
|
|
</td>
|
|
<td>{{ report.description|placeholder }}</td>
|
|
<td class="text-right">
|
|
{% if report.result %}
|
|
<a href="{% url 'extras:report_result' job_result_pk=report.result.pk %}">{{ report.result.created }}</a>
|
|
{% else %}
|
|
<span class="text-muted">Never</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if perms.extras.run_report %}
|
|
<div class="pull-right noprint">
|
|
<form action="{% url 'extras:report' module=report.module name=report.class_name %}" method="post">
|
|
{% csrf_token %}
|
|
<button type="submit" name="_run" class="btn btn-primary btn-xs">
|
|
{% if report.result %}
|
|
<i class="fa fa-refresh"></i> Run Again
|
|
{% else %}
|
|
<i class="fa fa-play"></i> Run Report
|
|
{% endif %}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% for method, stats in report.result.data.items %}
|
|
<tr>
|
|
<td colspan="4" class="method">
|
|
{{ method }}
|
|
</td>
|
|
<td class="text-right text-nowrap report-stats">
|
|
<label class="label label-success">{{ stats.success }}</label>
|
|
<label class="label label-info">{{ stats.info }}</label>
|
|
<label class="label label-warning">{{ stats.warning }}</label>
|
|
<label class="label label-danger">{{ stats.failure }}</label>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="alert alert-info">
|
|
<p><strong>No reports found.</strong></p>
|
|
<p>Reports should be saved to <code>{{ settings.REPORTS_ROOT }}</code>. (This path can be changed by setting <code>REPORTS_ROOT</code> in NetBox's configuration.)</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div class="col-md-3">
|
|
{% if reports %}
|
|
<div class="panel panel-default">
|
|
{% for module, module_reports in reports %}
|
|
<div class="panel-heading">
|
|
<strong>{{ module|bettertitle }}</strong>
|
|
</div>
|
|
<ul class="list-group">
|
|
{% for report in module_reports %}
|
|
<a href="#{{ report.module }}.{{ report.class_name }}" class="list-group-item">
|
|
<i class="fa fa-list-alt"></i> {{ report.name }}
|
|
<div class="pull-right">
|
|
{% include 'extras/inc/job_label.html' with result=report.result %}
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|