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

Side by Side Diff: appengine_apps/chromium_status/templates/cq_owners.html

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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
OLDNEW
(Empty)
1 {% extends "base.html" %}
2
3 {% block extra_head %}
4 <link href="/stylesheets/cq.css" type="text/css" rel="stylesheet"/>
5 {% endblock %}
6
7 {% block content %}
8 <table class="links">
9 <tr>
10 <td>
11 <i><a href="/cq/top" style=>Top scores</a></i>
12 </td>
13 <td>
14 <i><a href="http://chromium.org/developers/testing/commit-queue" style=>Co mmit Queue FAQ</a></i>
15 </td>
16 </tr>
17 </table>
18 <h1>Sorted by last month usage</h1>
19 <table class="issue">
20 <thead>
21 <tr>
22 <th>User</th>
23 <th>Last day</th>
24 <th>Last week</th>
25 <th>Last month</th>
26 <th>Ever</th>
27 </tr>
28 </thead>
29 <tbody>
30 {% for owner in data %}
31 <tr>
32 <td><a href="/cq/{{ owner.email|urlencode }}" class="owner">{{ owner.email }}</a></td>
33 <td>{{ owner.last_day|safe }}</td>
34 <td>{{ owner.last_week|safe }}</td>
35 <td>{{ owner.last_month }}</td>
36 <td>{{ owner.forever }}</td>
37 </tr>
38 {% endfor %}
39 </tbody>
40 </table>
41 <p>
42 {% endblock %}
OLDNEW
« no previous file with comments | « appengine_apps/chromium_status/templates/cq_owner.html ('k') | appengine_apps/chromium_status/templates/cq_top_score.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698