summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/displays/timing.html
blob: e9020b8efacd13e5bb5a1a4f0a1f1f9c646b9683 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
{% extends "base.html" %}

{% block extra_header_info %}
<script type="text/javascript" src="/site_media/sorttable.js"></script>
<script type="text/javascript" src="/site_media/CalendarPopup.js"></script>
<script language="JavaScript">var cal = new CalendarPopup();</script>
{% endblock%}
{% 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/>
<div>
<span class="mini-date">
<b>Enter date or use calendar popup: </b>
<form name="timestamp-select">
<input type="text" name="date1" value="{{timestamp_date}}" size=10>@
<input type="text" name="time" value="{{timestamp_time}}" size=8>
<a href="" onClick="cal.select(document.forms['timestamp-select'].date1,'anchor1','yyyy-MM-dd'); return false;"
   name="anchor1" ID="anchor1">Calendar</A>
<input type="button" name="go" value="Go" onClick="location.href='/displays/timing/'+document.forms['timestamp-select'].date1.value+'@'+document.forms['timestamp-select'].time.value;" />
 | <input type="button" name="now" value="Now" onClick="location.href='/displays/timing/';"/>
</form>
</span><br/><br/><br/></div>
  <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 %}