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

Side by Side Diff: appengine/findit/templates/waterfall/culprit.html

Issue 2085513003: [Findit] Show the list of failed build cycles that a culprit is responsible for. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@group_same_failures
Patch Set: Add unittests. Created 4 years, 6 months 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
« no previous file with comments | « appengine/findit/handlers/test/culprit_test.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <title>Culprit</title>
4 <meta charset="utf-8">
5 <link rel="stylesheet" href="/common.css">
6 </head>
7 <body>
8 <h1>Culprit</h1>
9 <b>Project:</b> {{project_name}}<br>
10 <b>Revision:</b><a href="https://crrev.com/{{revision}}">{{revision}}</a><br>
11 {% if cr_notified %}
12 <b>Notified:</b> Yes<br>
13 <b>Notification time:</b> {{cr_notification_time}}<br>
14 {% else %}
15 <b>Notified:</b> No<br>
16 {% endif %}
17
18 <h1>Builds</h1>
19 <div id="builds">
20 <table>
21 <thead>
22 <th></th>
23 <th>Master</th>
24 <th>Builder</th>
25 <th>Build Number</th>
26 </thead>
27 <tbody>
28 {% for build in builds %}
29 <tr>
30 <td>{{loop.index}}</td>
31 <td>{{build.master_name}}</td>
32 <td>{{build.builder_name}}</td>
33 <td>
34 <a href="/waterfall/build-failure?url=https://build.chromium.org/p
35 /{{build.master_name}}/builders/{{build.builder_name}}
36 /builds/{{build.build_number}}">
37 {{build.build_number}}
38 </a>
39 </td>
40 </tr>
41 {% endfor %}
42 </tbody>
43 </table>
44 </div>
45 </body>
OLDNEW
« no previous file with comments | « appengine/findit/handlers/test/culprit_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698