{% import 'macros/forms.html' as forms %} {% from 'macros/build_line.html' import build_table, build_line %} {% extends "layouts/base.html" %} {% block content %}

Buildslave: {{ slavename|e }}

{% if current %}

Currently building:

{% else %}

No current builds

{% endif %}

Recent builds

{{ build_table(recent, True) }}
{% if access_uri %} Click to Access Slave {% endif %} {% if admin %}

Administrator

{{ admin|email }}

{% endif %} {% if host %}

Slave information

Buildbot-Slave {{ slave_version }}
{{ host|e }}
{% endif %}

Connection Status

{{ connect_count }} connection(s) in the last hour {% if not slave.isConnected() %} (not currently connected) {% else %}

{% if authz.advertiseAction('gracefulShutdown') %}

Graceful Shutdown

{% if slave.getGraceful() %}

Slave will shut down gracefully when it is idle.

{% else %} {{ forms.graceful_shutdown(shutdown_url, authz) }} {% endif %} {% endif %} {% endif %}
{% endblock %}