summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/base-timeview.html
blob: 28a9fa0f4517764420c60c65dc11c79ed50a5592 (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
{% extends "base.html" %}

{% block timepiece %}
<script type="text/javascript">
function showCalendar() {
    var cal = new CalendarPopup("calendar_div");
    cal.showYearNavigation();
    cal.select(document.forms['cal_form'].cal_date,'cal_link',
        'yyyy/MM/dd' {% if timestamp %}, '{{ timestamp|date:"Y/m/d" }}'{% endif %} );
    return false;
}
function bcfg2_check_date() {
    var new_date = document.getElementById('cal_date').value;
    if(new_date) {
        document.cal_form.submit();
    }
}
document.write(getCalendarStyles());
</script>
{% if not timestamp %}Rendered at {% now "SHORT_DATETIME_FORMAT" %} | {% else %}View as of {{ timestamp|date:"SHORT_DATETIME_FORMAT" }} | {% endif %}{% spaceless %}
  <a id='cal_link' name='cal_link' href='#' onclick='showCalendar(); return false;'
      >[change]</a>
  <form method='post' action='{{ path }}' id='cal_form' name='cal_form'>
    <input id='cal_date' name='cal_date' type='hidden' value=''/>
    <input name='op' type='hidden' value='timeview'/>
  </form>
{% endspaceless %}
{% endblock %}