| OLD | NEW |
| 1 {% extends "swarming/base.html" %} | 1 {% extends "swarming/base.html" %} |
| 2 | 2 |
| 3 | 3 |
| 4 {% block headers %} | 4 {% block headers %} |
| 5 <script src="/third_party/webcomponentsjs/webcomponents.min.js"></script> | 5 <script src="/third_party/webcomponentsjs/webcomponents.min.js"></script> |
| 6 <link rel="import" href="/elements/polymer05/stats-overview-build.html"> | 6 <link rel="import" href="/ui/polymer05/stats-overview-build.html"> |
| 7 <style> | 7 <style> |
| 8 .highlight_section { | 8 .highlight_section { |
| 9 background-color: #ffffee; | 9 background-color: #ffffee; |
| 10 border-radius: 20px; | 10 border-radius: 20px; |
| 11 padding: 10px; | 11 padding: 10px; |
| 12 } | 12 } |
| 13 .admin a { | 13 .admin a { |
| 14 {% if not is_admin %} | 14 {% if not is_admin %} |
| 15 color: gray; | 15 color: gray; |
| 16 text-decoration: line-through; | 16 text-decoration: line-through; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 <input type="hidden" name="xsrf_token" value="{{xsrf_token}}" /> | 139 <input type="hidden" name="xsrf_token" value="{{xsrf_token}}" /> |
| 140 <button type="submit" {%if not is_admin%}disabled{%endif%}>Cancel all
pending tasks</button> | 140 <button type="submit" {%if not is_admin%}disabled{%endif%}>Cancel all
pending tasks</button> |
| 141 </form> | 141 </form> |
| 142 </li> | 142 </li> |
| 143 </ul> | 143 </ul> |
| 144 </div> | 144 </div> |
| 145 <stats-overview flex></stats-overview> | 145 <stats-overview flex></stats-overview> |
| 146 </div> | 146 </div> |
| 147 | 147 |
| 148 {% endblock %} | 148 {% endblock %} |
| OLD | NEW |