aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/buildslave.html
blob: d9f55038939edfc8f75a68ce706ec13a0129a9fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{% from 'build_line.html' import build_table, build_line %}
{% import 'forms.html' as forms %}

{% extends "layout.html" %}
{% block content %}
<h1>Buildslave: {{ slavename|e }}</h1>

<div class="column">

{% if current %}
  <h2>Currently building:</h2>
  <ul>
  {% for b in current %}
   <li>{{ build_line(b, True) }}
     <form method="post" action="{{ b.buildurl }}/stop" class="command stopbuild" style="display:inline">
       <input type="submit" value="Stop Build" />
       <input type="hidden" name="url" value="{{ this_url }}" />
     </form>
   </li>
  {% endfor %}
  </ul>
{% else %}
  <h2>No current builds</h2>
{% endif %}

<h2>Recent builds</h2>
{{ build_table(recent, True) }}
  
</div>
<div class="column">
{% if access_uri %}
  <a href="{{ access_uri|e }}">Click to Access Slave</a>
{% endif %}

{% if admin %}
  <h2>Administrator</h2>
  <p>{{ admin|email }}</p>
{% endif %}

{% if host %}
  <h2>Slave information</h2>
  Buildbot-Slave {{ slave_version }}
  <pre>{{ host|e }}</pre>
{% endif %}

<h2>Connection Status</h2>
<p>
{{ connect_count }} connection(s) in the last hour
{% if not slave.isConnected() %}
(not currently connected)
{% else %}
</p>
  {% if authz.advertiseAction('gracefulShutdown', request) %}
    <h2>Graceful Shutdown</h2>
    {% if slave.getGraceful() %}
      <p>Slave will shut down gracefully when it is idle.</p>
    {% else %}
      {{ forms.graceful_shutdown(shutdown_url, authz) }}
    {% endif %}
  {% endif %}
  {% if authz.advertiseAction('pauseSlave', request) %}
    <h2>Pause Slave</h2>
    {{ forms.pause_slave(pause_url, authz, slave.isPaused()) }}
  {% endif %}
{% endif %}
</div>
  
{% endblock %}