| OLD | NEW |
| (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 %} | |
| OLD | NEW |