| 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 <p> | |
| 19 {% for item in data %} | |
| 20 <table class="issue" id="pc{{ item.0.issue }}"> | |
| 21 <caption><a href="http://codereview.chromium.org/{{ item.0.issue }}" | |
| 22 id="issue_link{{ item.0.issue }}" class="issue"> | |
| 23 Issue {{ item.0.issue }}</a> patchset {{ item.0.patchset }}</caption> | |
| 24 <thead> | |
| 25 <tr bgcolor="#CCCCFF"> | |
| 26 <th class="timestamp">Timestamp</th> | |
| 27 <th class="type">Type</th> | |
| 28 <th class="message">Message</th> | |
| 29 </tr> | |
| 30 </thead> | |
| 31 <tbody class="issue"> | |
| 32 {% for event in item.1 %} | |
| 33 <tr> | |
| 34 <td class="timestamp">{{ event.timestamp|date:"D M d, H:i T " }}</td
> | |
| 35 <td class="type">{{ event.name }}</td> | |
| 36 {% autoescape off %} | |
| 37 <td class="message">{{ event.as_html }}</td> | |
| 38 {% endautoescape %} | |
| 39 </tr> | |
| 40 {% endfor %} | |
| 41 </tbody> | |
| 42 </table> | |
| 43 {% endfor %} | |
| 44 {% endblock %} | |
| OLD | NEW |