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