vagrant/test/buildbot/master/templates/change.html

16 lines
391 B
HTML

{% import 'macros/forms.html' as forms %}
{% from "macros/change.html" import change with context %}
{% extends "layouts/base.html" %}
{% block content %}
<h1>{{ pageTitle }}</h1>
{{ change(c) }}
{% if authz.advertiseAction('stopChange') %}
<h3>Cancel Builds For Change:</h3>
{{ forms.stop_change_builds("/builders/_all/stopchangeall", c.number, authz) }}
{% endif %}
{% endblock %}