{% extends 'layout.html' %} {% import 'forms.html' as forms %} {% from "box_macros.html" import box %} {% block content %}

Builders: {{ branches|join(', ')|e }}

{% for b in builders %} {% if b.build_url %} {% else %} {% endif %} {{ box(**b.current_box) }} {% endfor %}
{{ b.name|e }} {{ b.build_label }}
{{ b.build_text }}
no build
{% if num_building > 0 %} {% if authz.advertiseAction('stopBuild') %}

Stop All Builds

{{ forms.stop_build(path_to_root+"builders/_all/stopall", authz, on_all=True, label='All Builds') }} {% endif %} {% endif %} {% if num_online > 0 %} {% if authz.advertiseAction('forceAllBuilds') %}

Force All Builds

{{ forms.force_build(path_to_root+"builders/_all/forceall", authz, True) }} {% endif %} {% endif %} {% endblock %}