Index: appengine_apps/chromium_status/templates/cq_owners.html |
diff --git a/appengine_apps/chromium_status/templates/cq_owners.html b/appengine_apps/chromium_status/templates/cq_owners.html |
deleted file mode 100644 |
index e9f196c816eca0ca9817489dc0042eabc438746d..0000000000000000000000000000000000000000 |
--- a/appengine_apps/chromium_status/templates/cq_owners.html |
+++ /dev/null |
@@ -1,42 +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> |
-<h1>Sorted by last month usage</h1> |
-<table class="issue"> |
- <thead> |
- <tr> |
- <th>User</th> |
- <th>Last day</th> |
- <th>Last week</th> |
- <th>Last month</th> |
- <th>Ever</th> |
- </tr> |
- </thead> |
- <tbody> |
- {% for owner in data %} |
- <tr> |
- <td><a href="/cq/{{ owner.email|urlencode }}" class="owner">{{ owner.email }}</a></td> |
- <td>{{ owner.last_day|safe }}</td> |
- <td>{{ owner.last_week|safe }}</td> |
- <td>{{ owner.last_month }}</td> |
- <td>{{ owner.forever }}</td> |
- </tr> |
- {% endfor %} |
- </tbody> |
-</table> |
-<p> |
-{% endblock %} |