mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Initial work on reports API
This commit is contained in:
18
netbox/templates/extras/report_list.html
Normal file
18
netbox/templates/extras/report_list.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% extends '_base.html' %}
|
||||
{% load helpers %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Reports</h1>
|
||||
<div class="row">
|
||||
<div class="col-md-9">
|
||||
{% for module, report_list in reports %}
|
||||
<h2>{{ module|bettertitle }}</h2>
|
||||
<ul>
|
||||
{% for name, cls in report_list %}
|
||||
<li>{{ name }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user