Chromium Code Reviews| 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> |
|
chanli
2016/06/21 21:43:56
Just an idea, no need to implement in this CL: do
stgao
2016/06/24 17:24:38
I guess not. This page is to give the CL owner a l
|
| + <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> |