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 <table class="links"> | 8 <table class="links"> |
9 <tr> | 9 <tr> |
10 <td> | 10 <td> |
(...skipping 22 matching lines...) Expand all Loading... |
33 <td>{{ owner.last_day|safe }}</td> | 33 <td>{{ owner.last_day|safe }}</td> |
34 <td>{{ owner.last_week|safe }}</td> | 34 <td>{{ owner.last_week|safe }}</td> |
35 <td>{{ owner.last_month }}</td> | 35 <td>{{ owner.last_month }}</td> |
36 <td>{{ owner.forever }}</td> | 36 <td>{{ owner.forever }}</td> |
37 </tr> | 37 </tr> |
38 {% endfor %} | 38 {% endfor %} |
39 </tbody> | 39 </tbody> |
40 </table> | 40 </table> |
41 <p> | 41 <p> |
42 {% endblock %} | 42 {% endblock %} |
OLD | NEW |