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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/handlers/test/culprit_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/templates/waterfall/culprit.html
diff --git a/appengine/findit/templates/waterfall/culprit.html b/appengine/findit/templates/waterfall/culprit.html
new file mode 100644
index 0000000000000000000000000000000000000000..62562342870ae26629915faa043204d1edf3d48b
--- /dev/null
+++ b/appengine/findit/templates/waterfall/culprit.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<head>
+ <title>Culprit</title>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="/common.css">
+</head>
+<body>
+ <h1>Culprit</h1>
+ <b>Project:</b> {{project_name}}<br>
+ <b>Revision:</b><a href="https://crrev.com/{{revision}}">{{revision}}</a><br>
+ {% if cr_notified %}
+ <b>Notified:</b> Yes<br>
+ <b>Notification time:</b> {{cr_notification_time}}<br>
+ {% else %}
+ <b>Notified:</b> No<br>
+ {% endif %}
+
+ <h1>Builds</h1>
+ <div id="builds">
+ <table>
+ <thead>
+ <th></th>
+ <th>Master</th>
+ <th>Builder</th>
+ <th>Build Number</th>
+ </thead>
+ <tbody>
+ {% for build in builds %}
+ <tr>
+ <td>{{loop.index}}</td>
+ <td>{{build.master_name}}</td>
+ <td>{{build.builder_name}}</td>
+ <td>
+ <a href="/waterfall/build-failure?url=https://build.chromium.org/p
+/{{build.master_name}}/builders/{{build.builder_name}}
+/builds/{{build.build_number}}">
+ {{build.build_number}}
+ </a>
+ </td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
+</body>
« 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