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

Unified Diff: appengine_apps/chromium_status/templates/cq_owner.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_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 %}
« no previous file with comments | « appengine_apps/chromium_status/templates/commits.html ('k') | appengine_apps/chromium_status/templates/cq_owners.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698