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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 %}
OLDNEW
« 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