| OLD | NEW |
| (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> |
| OLD | NEW |