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

Side by Side Diff: templates/cq_owner.html

Issue 12045029: Add CQ Top Score dashboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
Patch Set: Add "Top scores" link to all CQ pags Created 7 years, 11 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 | « stylesheets/cq_top_score.css ('k') | templates/cq_owners.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% extends "base.html" %} 1 {% extends "base.html" %}
2 2
3 {% block extra_head %} 3 {% block extra_head %}
4 <link href="/stylesheets/cq.css" type="text/css" rel="stylesheet"/> 4 <link href="/stylesheets/cq.css" type="text/css" rel="stylesheet"/>
5 {% endblock %} 5 {% endblock %}
6 6
7 {% block content %} 7 {% block content %}
8 {% for item in data %} 8 {% for item in data %}
9 <table class="issue" id="pc{{ item.0.issue }}"> 9 <table class="issue" id="pc{{ item.0.issue }}">
10 <caption><a href="http://codereview.chromium.org/{{ item.0.issue }}" 10 <caption><a href="http://codereview.chromium.org/{{ item.0.issue }}"
(...skipping 12 matching lines...) Expand all
23 <td class="timestamp">{{ event.timestamp|date:"D M d, H:i T " }}</td > 23 <td class="timestamp">{{ event.timestamp|date:"D M d, H:i T " }}</td >
24 <td class="type">{{ event.name }}</td> 24 <td class="type">{{ event.name }}</td>
25 {% autoescape off %} 25 {% autoescape off %}
26 <td class="message">{{ event.as_html }}</td> 26 <td class="message">{{ event.as_html }}</td>
27 {% endautoescape %} 27 {% endautoescape %}
28 </tr> 28 </tr>
29 {% endfor %} 29 {% endfor %}
30 </tbody> 30 </tbody>
31 </table> 31 </table>
32 {% endfor %} 32 {% endfor %}
33 <p>
34 <i><a href="/cq/top" style=>Top scores</a></i>
33 {% endblock %} 35 {% endblock %}
OLDNEW
« no previous file with comments | « stylesheets/cq_top_score.css ('k') | templates/cq_owners.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698