aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslaves.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslaves.html')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslaves.html76
1 files changed, 0 insertions, 76 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslaves.html b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslaves.html
deleted file mode 100644
index 567e3747..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslaves.html
+++ /dev/null
@@ -1,76 +0,0 @@
-{% extends "layout.html" %}
-
-{% block content %}
-
-<h1>Buildslaves</h1>
-
-<div class="column">
-
-<table class="info">
-
-<tr>
- <th>Name</th>
- {%- if show_builder_column %}
- <th>Builders</th>
- {%- endif %}
- <th>BuildBot</th>
- <th>Admin</th>
- <th>Last heard from</th>
- <th>Connects/Hour</th>
- <th>Status</th>
-</tr>
-
-{% for s in slaves %}
- <tr class="{{ loop.cycle('alt','') }}">
- <td><b><a href="{{ s.link }}">{{ s.name }}</a></b></td>
-
- {%- if show_builder_column %}
- <td>
- {%- if s.builders %}
- {%- for b in s.builders %}
- <a href="{{ b.link }}">{{ b.name }}</a>
- {%- endfor %}
- {%- else %}
- <span class="Warning">no builders</span>
- {%- endif -%}
- </td>
- {%- endif %}
-
-
- <td>{{ (s.version or '-')|e }}</td>
-
- {%- if s.admin -%}
- <td>{{ s.admin|email }}</td>
- {%- else -%}
- <td>-</td>
- {%- endif -%}
-
- <td>
- {%- if s.last_heard_from_age -%}
- {{ s.last_heard_from_age }} <small>({{ s.last_heard_from_time }})</small>
- {%- endif -%}
- </td>
- <td>
- {{ s.connectCount }}
- </td>
-
- {% if s.connected %}
- {% if s.running_builds %}
- <td class="building">Running {{ s.running_builds }} build(s)</td>
- {% elif s.paused %}
- <td class="paused">Paused</td>
- {% else %}
- <td class="idle">Idle</td>
- {% endif %}
-
- {% else %}
- <td class="offline">Not connected</td>
- {% endif %}
-
- </tr>
-{% endfor %}
-</table>
-
-</div>
-
-{% endblock %}