| OLD | NEW |
| 1 {% extends "layout.html" %} | 1 {% extends "layout.html" %} |
| 2 {% from "tree_status.html" import treestatus %} | 2 {% from "tree_status.html" import treestatus %} |
| 3 | 3 |
| 4 {% block header -%} | 4 {% block header -%} |
| 5 {{ super() }} | 5 {{ super() }} |
| 6 <hr/> | 6 <hr/> |
| 7 <script> | 7 <script> |
| 8 /** | 8 /** |
| 9 * Pseudo namespace for chromium - keep it short because we are in a very | 9 * Pseudo namespace for chromium - keep it short because we are in a very |
| 10 * narrow scope for this file. | 10 * narrow scope for this file. |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 <center style="padding: 0 7px"> | 142 <center style="padding: 0 7px"> |
| 143 <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-botto
m-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-botto
m-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2
px 6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -web
kit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);"> | 143 <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-botto
m-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-botto
m-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2
px 6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -web
kit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);"> |
| 144 <tr> | 144 <tr> |
| 145 <td width="29%"> | 145 <td width="29%"> |
| 146 <table valign="top" width="100%"> | 146 <table valign="top" width="100%"> |
| 147 <tr> | 147 <tr> |
| 148 <td style="text-align: right;"> | 148 <td style="text-align: right;"> |
| 149 <b>Builds:</b> | 149 <b>Builds:</b> |
| 150 </td> | 150 </td> |
| 151 <td> | 151 <td> |
| 152 <a href="https://commondatastorage.googleapis.com/chromium-browser
-continuous/index.html">continuous</a> | | 152 <a href="https://commondatastorage.googleapis.com/chromium-browser
-snapshots/index.html">continuous</a> | |
| 153 <a href="https://build.chromium.org/f/chromium/symsrv/index.html">
symbols</a> | | 153 <a href="https://build.chromium.org/f/chromium/symsrv/index.html">
symbols</a> | |
| 154 <a href="https://chromium-status.appspot.com">status</a> | | 154 <a href="https://chromium-status.appspot.com">status</a> | |
| 155 <a href="https://blink-status.appspot.com">blink status</a> | 155 <a href="https://blink-status.appspot.com">blink status</a> |
| 156 </td> | 156 </td> |
| 157 </tr> | 157 </tr> |
| 158 <tr> | 158 <tr> |
| 159 <td style="text-align: right;"> | 159 <td style="text-align: right;"> |
| 160 <b>Dashboards:</b> | 160 <b>Dashboards:</b> |
| 161 </td> | 161 </td> |
| 162 <td> | 162 <td> |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 </center> | 494 </center> |
| 495 | 495 |
| 496 </div> | 496 </div> |
| 497 {% endblock header %} | 497 {% endblock header %} |
| 498 | 498 |
| 499 {% block footer %} | 499 {% block footer %} |
| 500 | 500 |
| 501 {{ super() }} | 501 {{ super() }} |
| 502 {# <p>Debug info: {{ debuginfo }}</p> #} | 502 {# <p>Debug info: {{ debuginfo }}</p> #} |
| 503 {% endblock %} | 503 {% endblock %} |
| OLD | NEW |