~nskaggs/qa-dashboard/contribtrack

« back to all changes in this revision

Viewing changes to eventstat/templates/power/eventstat/image_details.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 %}
 
6
{{ task_type|capfirst }} wakeups using {{ image.arch }} on {{ machine }} for build {{ image.build_number }}
 
7
{% endblock %}
 
8
 
 
9
{% block extra_headers %}
 
10
<script type="text/javascript" src='{% static "js/dygraph-combined.js" %}'></script>
 
11
<script src="http://yui.yahooapis.com/3.6.0/build/yui/yui-min.js" type="text/javascript"></script>
 
12
<script src='{% static "js/graph.js" %}' type="text/javascript"></script>
 
13
{% endblock extra_headers %}
 
14
{% block content %}
 
15
 
 
16
<div class="grid_2">
 
17
  {% include "power/eventstat/task_type_include.html" %}
 
18
</div>
 
19
 
 
20
<div class="grid_13">
 
21
    <h2>
 
22
      {{ task_type|capfirst }} wakeups using {{ image.arch }} on {{ machine }} for build {{ image.build_number }}
 
23
    </h2>
 
24
    {% render_table table %}
 
25
</div>
 
26
 
 
27
{% endblock %}