Sha256: 1e8ba2980c76603ea002b785db29ed80d7f36b307d7d2cd4869ecb1ef82b0adf

Contents?: true

Size: 1.47 KB

Versions: 45

Compression:

Stored size: 1.47 KB

Contents

{% extends "layouts/base.html" %}

{% block content %}
<h1>Buildslaves</h1>

<table class="zebra-striped">
  <thead>
    <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>
  </thead>

  <tbody>
    {% 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><br />
        {%- 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 }}
        {%- endif -%}
      </td>
      <td>
        {{ s.connectCount }}
      </td>

      {% if s.connected %}
      {% if s.running_builds %}
      <td class="building">Running {{ s.running_builds }} build(s)</td>
      {% else %}
      <td class="idle">Idle</td>
      {% endif %}

      {% else %}
      <td class="offline">Not connected</td>
      {% endif %}

    </tr>
    {% endfor %}
  </tbody>
</table>
{% endblock %}

Version data entries

45 entries across 45 versions & 6 rubygems

Version Path
bmhatfield-vagrant-1.0.10 test/buildbot/master/templates/buildslaves.html
bmhatfield-vagrant-1.0.9 test/buildbot/master/templates/buildslaves.html
bmhatfield-vagrant-1.0.8 test/buildbot/master/templates/buildslaves.html
bmhatfield-vagrant-1.0.7 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.7 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.6 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.5 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.4 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.3 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.2 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.1 test/buildbot/master/templates/buildslaves.html
vagrantup-1.0.0 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.99.2 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.99.1 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.7 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.6 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.5 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.4 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.3 test/buildbot/master/templates/buildslaves.html
vagrantup-0.9.2 test/buildbot/master/templates/buildslaves.html