~nskaggs/qa-dashboard/contribtrack

« back to all changes in this revision

Viewing changes to eventstat/templates/power/eventstat/task_overview.html

  • Committer: Joe Talbott
  • Date: 2013-04-18 19:07:54 UTC
  • mto: (335.4.8 fix_zip_errors)
  • mto: This revision was merged to the branch mainline in revision 356.
  • Revision ID: joe.talbott@canonical.com-20130418190754-yl63qvq6e5ghnn3u
eventstat - Add initial eventstat app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "layout.html" %}
 
2
{% load dashboard_extras staticfiles %}
 
3
{% load render_table from django_tables2 %}
 
4
 
 
5
{% block page_name %}Wakeups for {{ task }} using {{ arch }} on {{ machine }} for the past {{ days }} days{% endblock %}
 
6
 
 
7
{% block extra_headers %}
 
8
<script type="text/javascript" src='{% static "js/dygraph-combined.js" %}'></script>
 
9
<script src="http://yui.yahooapis.com/3.6.0/build/yui/yui-min.js" type="text/javascript"></script>
 
10
<script src='{% static "js/graph.js" %}' type="text/javascript"></script>
 
11
{% endblock extra_headers %}
 
12
{% block content %}
 
13
 
 
14
<div class="grid_2">
 
15
  {% include "power/eventstat/days_include.html" with day_urls=day_urls days=days %}
 
16
</div>
 
17
 
 
18
<div class="grid_13">
 
19
    <h2>
 
20
      Wakeups for {{ task }} using {{ arch }} on {{ machine }} for the past {{ days}} days
 
21
    </h2>
 
22
    {% render_table table %}
 
23
</div>
 
24
 
 
25
{% endblock %}