summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/displays/timing.html
blob: c3573851a042feaf0bed46ed278859b3a16ea3e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 %}