aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/change.html
blob: f12161da44f4f3a6d63730584586dab85eddbc6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "layout.html" %}
{% from "change_macros.html" import change with context %}
{% import 'forms.html' as forms %}

{% block content %}

<h1>{{ pageTitle }}</h1>

<div class="column">

{{ change(c) }}

{% if authz.advertiseAction('stopChange', request) %}
  <h3>Cancel Builds For Change:</h3>
  {{ forms.stop_change_builds("/builders/_all/stopchangeall", c.number, authz) }}
{% endif %}

</div>

{% endblock %}