summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Reports/reports/templates/displays/summary.html
blob: 29cbb22d7391a013ef7b4a1c83fa7985dca6c800 (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
{% extends "base.html" %}
{% block extra_header_info %}
<script type="text/javascript" src="{% url Bcfg2.Server.Reports.reports.views.client_index %}../site_media/CalendarPopup.js"></script>
<script language="JavaScript" type="text/javascript">var cal = new CalendarPopup();</script>
{% endblock%}
{% block title %}Display Index Listing{% endblock %}
{% block pagebanner %}
  <div class="header">
      <h1>BCFG Clients Summary</h1>
      <span class="notebox">Report Run @ {% now "F j, Y P"%}</span>
  </div>
  <br/>
{% endblock %}

{% block content %}
<div>
<span class="mini-date">
<b>Enter date or use calendar popup: </b>
</span>
<form name="timestamp-select" action="{{path}" method="get">
<span class="mini-date">
<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='{% url Bcfg2.Server.Reports.reports.views.display_summary %}'+document.forms['timestamp-select'].date1.value+'@'+document.forms['timestamp-select'].time.value;" />
 | <input type="button" name="now" value="Now" onClick="location.href='{% url Bcfg2.Server.Reports.reports.views.display_summary %}';"/>
</span></form>
<br/><br/><br/></div>
  {% include "displays/summary-block-direct-links.html" %}
{% endblock %}