summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/displays/timing.html
diff options
context:
space:
mode:
Diffstat (limited to 'reports/brpt/reports/templates/displays/timing.html')
-rw-r--r--reports/brpt/reports/templates/displays/timing.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/reports/brpt/reports/templates/displays/timing.html b/reports/brpt/reports/templates/displays/timing.html
new file mode 100644
index 000000000..c3573851a
--- /dev/null
+++ b/reports/brpt/reports/templates/displays/timing.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+
+{% block extra_header_info %}
+<script type="text/javascript" src="/site_media/sorttable.js">
+</script>{% endblock%}
+{% comment %} THIS ABOVE PART MAY BE SITE DEPENDENT-- CHANGE {% endcomment %}
+{% block title %}Display Index Listing{% endblock %}
+
+{% block content %}
+ <div class="header">
+ <h1>BCFG Performance Timings</h1>
+ <span class="notebox">Report Run @ {% now "F j, Y P"%}</span>
+ </div>
+ <br/>
+ <center>
+ <table id="t1" class="sortable">
+ <tr>
+ <th class="sortable">Hostname</th>
+ <th class="sortable">Parse</th>
+ <th class="sortable">Probe</th>
+ <th class="sortable">Inventory</th>
+ <th class="sortable">Install</th>
+ <th class="sortable">Config</th>
+ <th class="sortable">Total</th>
+ </tr>
+ {% for dict_unit in stats_list %}
+ <tr>
+ <td class="sortable"><a href="/clients/{{dict_unit.name}}/">{{dict_unit.name}}</a></td>
+ <td class="sortable">{{dict_unit.parse}}</td>
+ <td class="sortable">{{dict_unit.probe}}</td>
+ <td class="sortable">{{dict_unit.inventory}}</td>
+ <td class="sortable">{{dict_unit.install}}</td>
+ <td class="sortable">{{dict_unit.config}}</td>
+ <td class="sortable">{{dict_unit.total}}</td>
+ </tr>
+ {% endfor %}
+ </table>
+ </center>
+{% endblock %} \ No newline at end of file