OLD | NEW |
(Empty) | |
| 1 {% extends "base.html" %} |
| 2 {% comment %} |
| 3 |
| 4 Copyright 2010 Google Inc. All Rights Reserved. |
| 5 |
| 6 This template builds a page with multiple plots in frames. |
| 7 {% endcomment %} |
| 8 {% block header_block %} |
| 9 <h2><center>Chrome OS Performance Test Results</center></h2> |
| 10 <h3><center>{{ tpl_boards }} - {{ tpl_netbook }}</center></h3> |
| 11 <div> |
| 12 {% for test_name, test_key in tpl_charts %} |
| 13 {% ifchanged %} |
| 14 <a href="#{{ test_name }}">{{ test_name }}</a> |
| 15 | |
| 16 {% endifchanged %} |
| 17 {% endfor %} |
| 18 <i>last updated: {% now "D M H:i:s Y" %}</i> |
| 19 </div> |
| 20 {% endblock %} |
| 21 {% block html_block %} |
| 22 {% for test_name, test_key in tpl_charts %} |
| 23 {% ifchanged %} |
| 24 <hr><center><a name="{{ test_name }}"><strong>{{ test_name }}</strong></a><cente
r> |
| 25 {% endifchanged %} |
| 26 <iframe width="{{ tpl_width|add:'20' }}" |
| 27 height="{{ tpl_height|add:'20' }}" |
| 28 frameborder="0" |
| 29 src="/croschart/server/{{ tpl_boards }}/{{ tpl_netbook }}/{{ test_name }
}/{{ test_key }}/{{ tpl_width }}/{{ tpl_height }}/"> |
| 30 </iframe> |
| 31 {% endfor %} |
| 32 {% endblock %} |
OLD | NEW |