~fginther/helipad/public-jenkins-url-2

« back to all changes in this revision

Viewing changes to benchmarks/templates/benchmarksmain.html

  • Committer: chris.gagnon
  • Date: 2013-06-25 23:46:23 UTC
  • mto: This revision was merged to the branch mainline in revision 107.
  • Revision ID: chris.gagnon@canonical.com-20130625234623-7cisxpwllg0zuqpm
use graphics instead of benchmarks

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "layout.html" %}
2
 
{% load dashboard_extras %}
3
 
 
4
 
{% block page_name %}PS-QA Dashboard{% endblock %}
5
 
 
6
 
{% block content %}
7
 
<script type='text/javascript'>
8
 
  //<![CDATA[
9
 
    $(document).ready(function() {
10
 
      $(".data-table").dataTable({
11
 
        "bPaginate": false,
12
 
        "aaSorting": [[0, 'desc']]
13
 
      });
14
 
    });
15
 
  //]]>
16
 
</script>
17
 
<div class='grid_15'>
18
 
  <ul>
19
 
    <li>
20
 
      <h2>
21
 
          <a href='{% url openarena %}'>Openarena</a>
22
 
      </h2>
23
 
    </li>
24
 
    <li>
25
 
      <h2>
26
 
          <a href='{% url mir_glmark %}'>Mir_GLMark</a>
27
 
      </h2>
28
 
    </li>
29
 
  </ul>
30
 
</div>
31
 
{% endblock %}