Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: frontend/croschart/templates/charts.html

Issue 6821082: Integrate dynamic charts into autotest frontend. (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: Add license. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « frontend/croschart/templates/base.html ('k') | frontend/croschart/templates/plot_chart.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 &nbsp;|&nbsp;
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 %}
OLDNEW
« no previous file with comments | « frontend/croschart/templates/base.html ('k') | frontend/croschart/templates/plot_chart.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698