mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-25 01:48:38 -06:00
Cosmetic cleanup
This commit is contained in:
parent
e86ec75513
commit
87fb4af5cb
@ -13,7 +13,7 @@
|
|||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th>Last Run</th>
|
<th class="text-right">Last Run</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -27,9 +27,9 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>{{ report.description|default:"" }}</td>
|
<td>{{ report.description|default:"" }}</td>
|
||||||
{% if report.result %}
|
{% if report.result %}
|
||||||
<td>{{ report.result.created }}</td>
|
<td class="text-right">{{ report.result.created }}</td>
|
||||||
{% else %}
|
{% else %}
|
||||||
<td class="text-muted">Never</td>
|
<td class="text-right text-muted">Never</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
{% for method, stats in report.result.data.items %}
|
{% for method, stats in report.result.data.items %}
|
||||||
@ -51,19 +51,23 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<ul class="list-group">
|
<div class="panel panel-default">
|
||||||
{% for module, module_reports in reports %}
|
{% for module, module_reports in reports %}
|
||||||
<a href="#module.{{ module }}" class="list-group-item"><strong>{{ module|bettertitle }}</strong></a>
|
<div class="panel-heading">
|
||||||
{% for report in module_reports %}
|
<strong>{{ module|bettertitle }}</strong>
|
||||||
<a href="#report.{{ report.name }}" class="list-group-item">
|
</div>
|
||||||
{{ report.name }}
|
<ul class="list-group">
|
||||||
<div class="pull-right">
|
{% for report in module_reports %}
|
||||||
{% include 'extras/inc/report_label.html' %}
|
<a href="#report.{{ report.name }}" class="list-group-item">
|
||||||
</div>
|
<i class="fa fa-list-alt"></i> {{ report.name }}
|
||||||
</a>
|
<div class="pull-right">
|
||||||
{% endfor %}
|
{% include 'extras/inc/report_label.html' %}
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user