| Index: appengine_apps/chromium_status/templates/cq_owner.html
|
| diff --git a/appengine_apps/chromium_status/templates/cq_owner.html b/appengine_apps/chromium_status/templates/cq_owner.html
|
| deleted file mode 100644
|
| index 9c5a9d8e6a6193a09cd55d8bd26fd07a02f1a60f..0000000000000000000000000000000000000000
|
| --- a/appengine_apps/chromium_status/templates/cq_owner.html
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -{% extends "base.html" %}
|
| -
|
| -{% block extra_head %}
|
| - <link href="/stylesheets/cq.css" type="text/css" rel="stylesheet"/>
|
| -{% endblock %}
|
| -
|
| -{% block content %}
|
| -<table class="links">
|
| - <tr>
|
| - <td>
|
| - <i><a href="/cq/top" style=>Top scores</a></i>
|
| - </td>
|
| - <td>
|
| - <i><a href="http://chromium.org/developers/testing/commit-queue" style=>Commit Queue FAQ</a></i>
|
| - </td>
|
| - </tr>
|
| -</table>
|
| -<p>
|
| - {% for item in data %}
|
| - <table class="issue" id="pc{{ item.0.issue }}">
|
| - <caption><a href="http://codereview.chromium.org/{{ item.0.issue }}"
|
| - id="issue_link{{ item.0.issue }}" class="issue">
|
| - Issue {{ item.0.issue }}</a> patchset {{ item.0.patchset }}</caption>
|
| - <thead>
|
| - <tr bgcolor="#CCCCFF">
|
| - <th class="timestamp">Timestamp</th>
|
| - <th class="type">Type</th>
|
| - <th class="message">Message</th>
|
| - </tr>
|
| - </thead>
|
| - <tbody class="issue">
|
| - {% for event in item.1 %}
|
| - <tr>
|
| - <td class="timestamp">{{ event.timestamp|date:"D M d, H:i T " }}</td>
|
| - <td class="type">{{ event.name }}</td>
|
| - {% autoescape off %}
|
| - <td class="message">{{ event.as_html }}</td>
|
| - {% endautoescape %}
|
| - </tr>
|
| - {% endfor %}
|
| - </tbody>
|
| - </table>
|
| - {% endfor %}
|
| -{% endblock %}
|
|
|