summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/displays/summary.html
blob: cf253c25c5a0553d7def339ddd90835ac57f0512 (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
{% extends "base.html" %}
{% block extra_header_info %}
<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 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>
<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/summary/'+document.forms['timestamp-select'].date1.value+'@'+document.forms['timestamp-select'].time.value;" />
 | <input type="button" name="now" value="Now" onClick="location.href='/displays/summary/';"/>
</form>
</span><br/><br/><br/></div>
  {% include "displays/summary-block-direct-links.html" %}
{% endblock %}