Fix spelling to make @dfelinto happy

This commit is contained in:
2017-04-21 16:53:34 +02:00
parent 7f47ac6bcb
commit f777fe5826
2 changed files with 8 additions and 8 deletions

View File

@@ -36,7 +36,7 @@
{% endif %}
{% if pending %}
<h2>Pending Build Requests:</h2>
<h2>Pending build requests:</h2>
<ul>
{% for b in pending %}
<li><small>({{ b.when }}, waiting {{ b.delay }})</small>
@@ -69,10 +69,10 @@
{% endif %}
{% else %}
<h2>No Pending Build Requests</h2>
<h2>No pending build requests</h2>
{% endif %}
<h2>Recent Builds:</h2>
<h2>Recent builds:</h2>
{{ build_table(recent) }}

View File

@@ -26,15 +26,15 @@
{% if num_building > 0 %}
{% if authz.advertiseAction('stopAllBuilds', request) or authz.advertiseAction('stopBuild', request) %}
<h2>Stop Selected Builds</h2>
<h2>Stop selected builds</h2>
{{ forms.stop_build(path_to_root+"builders/_selected/stopselected", authz, on_selected=True, builders=builders, label='Selected Builds') }}
<h2>Stop All Builds</h2>
<h2>Stop all builds</h2>
{{ forms.stop_build(path_to_root+"builders/_all/stopall", authz, on_all=True, label='All Builds') }}
{% endif %}
{% endif %}
{% if authz.advertiseAction('cancelAllPendingBuilds', request) %}
<h2>Cancel Selected Pending Builds</h2>
<h2>Cancel selected pending builds</h2>
{{ forms.cancel_build(path_to_root+"builders/_selected/cancelpendingselected", authz, on_selected=True, builders=builders, label='Selected Pending Builds') }}
<h2>Cancel All Pending Builds</h2>
{{ forms.cancel_build(path_to_root+"builders/_all/cancelpendingall", authz, on_all=True, label='All Pending Builds') }}
@@ -42,9 +42,9 @@
{% if num_online > 0 %}
{% if authz.advertiseAction('forceAllBuilds', request) or authz.advertiseAction('forceBuild', request) %}
<h2>Force Selected Builds</h2>
<h2>Force selected builds</h2>
{{ forms.force_build(path_to_root+"builders/_selected/forceselected", authz, request, on_selected=True, builders=builders, force_schedulers=force_schedulers, default_props=default_props) }}
<h2>Force All Builds</h2>
<h2>Force all builds</h2>
{{ forms.force_build(path_to_root+"builders/_all/forceall", authz,request, on_all=True, force_schedulers=force_schedulers, default_props=default_props) }}
{% endif %}
{% endif %}