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

Side by Side Diff: templates/cq_top_score.html

Issue 12045029: Add CQ Top Score dashboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
Patch Set: 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') | no next file » | 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
3 {% block extra_head %}
4 <link href="/stylesheets/cq_top_score.css" type="text/css" rel="stylesheet"/ >
5 {% endblock %}
6
7 {% block content %}
8 <h1>Top scores</h1>
9 <table class="issue">
10 <tbody>
11 {% for owner in data %}
12 <tr>
13 <td>{{ owner.rank }}</td>
14 <td>{{ owner.name }}</td>
15 <td>{{ owner.points }}</td>
16 </tr>
17 {% endfor %}
18 </tbody>
19 </table>
20
21 <table class="legend">
22 <tbody>
23 <tr>
24 <td>
25 </td>
26 <td>
27 10 POINTS FOR CQ IN THE PAST 24 HOURS<br>
csharp 2013/01/22 21:08:03 Nit: Have the legend at the top of the page instea
M-A Ruel 2013/01/22 23:54:35 I'd prefer to keep it at the bottom to keep the dr
28 5 POINTS FOR CQ IN THE PAST 7 DAYS<br>
29 2 POINTS FOR CQ IN THE PAST 30 DAYS<br>
30 1 POINT FOR CQ DONE BEFORE<br>
31 </td>
32 <td>
33 </td>
34 </tr>
35 </tbody>
36 </table>
37 <p>
38 <a href="/third_party/LICENSE.txt">Font license</a>
39 {% endblock %}
OLDNEW
« no previous file with comments | « stylesheets/cq_top_score.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698