| 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="/ui/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; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 {% if user_type %} | 66 {% if user_type %} |
| 67 As a {{user_type}}, you are entitled to see these pages: | 67 As a {{user_type}}, you are entitled to see these pages: |
| 68 {% else %} | 68 {% else %} |
| 69 Please <a href="{{signin_link|safe}}">sign in</a> for more access. | 69 Please <a href="{{signin_link|safe}}">sign in</a> for more access. |
| 70 {% endif %} | 70 {% endif %} |
| 71 | 71 |
| 72 <h3>Service Status</h3> | 72 <h3>Service Status</h3> |
| 73 <ul> | 73 <ul> |
| 74 <li class="user"><a href="/stats">Usage statistics</a></li> | 74 <li class="user"><a href="/stats">Usage statistics</a></li> |
| 75 <li class="user"><a href="/user/tasks">Tasks</a></li> | 75 <li class="user"><a href="/oldui/user/tasks">Tasks</a></li> |
| 76 <li class="privileged_user"><a href="/restricted/bots">Bots</a></li> | 76 <li class="privileged_user"><a href="/oldui/restricted/bots">Bots</a></li> |
| 77 <li class="admin"><a href="/restricted/ereporter2/report">Exceptions in se
rver log</a></li> | 77 <li class="admin"><a href="/restricted/ereporter2/report">Exceptions in se
rver log</a></li> |
| 78 <li class="admin"><a href="/restricted/ereporter2/errors">Ereporter2 error
s</a></li> | 78 <li class="admin"><a href="/restricted/ereporter2/errors">Ereporter2 error
s</a></li> |
| 79 <li class="admin"><a href="/restricted/mapreduce/status">Map reduce jobs</
a></li> | 79 <li class="admin"><a href="/restricted/mapreduce/status">Map reduce jobs</
a></li> |
| 80 <li class="admin"> | 80 <li class="admin"> |
| 81 <a href="https://console.cloud.google.com/appengine?project={{app_id|utf
8}}&versionId={{app_version|utf8}}&duration=P2D&graph=AE_INSTANCES">View instanc
es on AppEngine</a> | 81 <a href="https://console.cloud.google.com/appengine?project={{app_id|utf
8}}&versionId={{app_version|utf8}}&duration=P2D&graph=AE_INSTANCES">View instanc
es on AppEngine</a> |
| 82 </li> | 82 </li> |
| 83 <li class="admin"> | 83 <li class="admin"> |
| 84 <a href="https://console.cloud.google.com/appengine?project={{app_id|utf
8}}&versionId={{app_version|utf8}}&duration=P2D&graph=AE_ERROR_DETAILS">View HTT
P 4xx/5xx on AppEngine</a> | 84 <a href="https://console.cloud.google.com/appengine?project={{app_id|utf
8}}&versionId={{app_version|utf8}}&duration=P2D&graph=AE_ERROR_DETAILS">View HTT
P 4xx/5xx on AppEngine</a> |
| 85 </li> | 85 </li> |
| 86 </ul> | 86 </ul> |
| (...skipping 52 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 |