Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1177)

Unified Diff: appengine_apps/chromium_status/templates/cq_owners.html

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 %}
« no previous file with comments | « appengine_apps/chromium_status/templates/cq_owner.html ('k') | appengine_apps/chromium_status/templates/cq_top_score.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698