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

Side by Side Diff: templates/cq_owners.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 | « templates/cq_owner.html ('k') | templates/cq_top_score.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 <h1>Sorted by last month usage</h1> 8 <h1>Sorted by last month usage</h1>
9 <table class="issue"> 9 <table class="issue">
10 <thead> 10 <thead>
(...skipping 10 matching lines...) Expand all
21 <tr> 21 <tr>
22 <td><a href="/cq/{{ owner.email|urlencode }}" class="owner">{{ owner.email }}</a></td> 22 <td><a href="/cq/{{ owner.email|urlencode }}" class="owner">{{ owner.email }}</a></td>
23 <td>{{ owner.last_day|safe }}</td> 23 <td>{{ owner.last_day|safe }}</td>
24 <td>{{ owner.last_week|safe }}</td> 24 <td>{{ owner.last_week|safe }}</td>
25 <td>{{ owner.last_month }}</td> 25 <td>{{ owner.last_month }}</td>
26 <td>{{ owner.forever }}</td> 26 <td>{{ owner.forever }}</td>
27 </tr> 27 </tr>
28 {% endfor %} 28 {% endfor %}
29 </tbody> 29 </tbody>
30 </table> 30 </table>
31 <p>
32 <i><a href="/cq/top" style=>Top scores</a></i>
31 {% endblock %} 33 {% endblock %}
OLDNEW
« no previous file with comments | « templates/cq_owner.html ('k') | templates/cq_top_score.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698