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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « stylesheets/cq_top_score.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/cq_top_score.html
diff --git a/templates/cq_top_score.html b/templates/cq_top_score.html
new file mode 100644
index 0000000000000000000000000000000000000000..f366ee1058659fcddd38917dbdbdc3cff92cefcf
--- /dev/null
+++ b/templates/cq_top_score.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+
+{% block extra_head %}
+ <link href="/stylesheets/cq_top_score.css" type="text/css" rel="stylesheet"/>
+{% endblock %}
+
+{% block content %}
+<h1>Top scores</h1>
+<table class="issue">
+ <tbody>
+ {% for owner in data %}
+ <tr>
+ <td>{{ owner.rank }}</td>
+ <td>{{ owner.name }}</td>
+ <td>{{ owner.points }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+</table>
+
+<table class="legend">
+ <tbody>
+ <tr>
+ <td>
+ </td>
+ <td>
+ 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
+ 5 POINTS FOR CQ IN THE PAST 7 DAYS<br>
+ 2 POINTS FOR CQ IN THE PAST 30 DAYS<br>
+ 1 POINT FOR CQ DONE BEFORE<br>
+ </td>
+ <td>
+ </td>
+ </tr>
+ </tbody>
+</table>
+<p>
+<a href="/third_party/LICENSE.txt">Font license</a>
+{% endblock %}
« 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