| 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 {% for item in data %} | 8 {% for item in data %} |
| 9 <table class="issue" id="pc{{ item.0.issue }}"> | 9 <table class="issue" id="pc{{ item.0.issue }}"> |
| 10 <caption><a href="http://codereview.chromium.org/{{ item.0.issue }}" | 10 <caption><a href="http://codereview.chromium.org/{{ item.0.issue }}" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 <td class="timestamp">{{ event.timestamp|date:"D M d, H:i T " }}</td
> | 23 <td class="timestamp">{{ event.timestamp|date:"D M d, H:i T " }}</td
> |
| 24 <td class="type">{{ event.name }}</td> | 24 <td class="type">{{ event.name }}</td> |
| 25 {% autoescape off %} | 25 {% autoescape off %} |
| 26 <td class="message">{{ event.as_html }}</td> | 26 <td class="message">{{ event.as_html }}</td> |
| 27 {% endautoescape %} | 27 {% endautoescape %} |
| 28 </tr> | 28 </tr> |
| 29 {% endfor %} | 29 {% endfor %} |
| 30 </tbody> | 30 </tbody> |
| 31 </table> | 31 </table> |
| 32 {% endfor %} | 32 {% endfor %} |
| 33 <p> |
| 34 <i><a href="/cq/top" style=>Top scores</a></i> |
| 33 {% endblock %} | 35 {% endblock %} |
| OLD | NEW |