travis-web/assets/scripts/app/templates/repo/settings.hbs
Mathias Meyer b3fbb5f5cf Add setting for number of concurrent builds.
Includes a little rework of the settings page to fit in an input
field.
2014-06-16 15:45:03 +02:00

48 lines
1.6 KiB
Handlebars

<div id="repo">
<h3>Settings: {{#link-to "repo" this}}{{slug}}{{/link-to}}</h3>
{{#travis-tabs}}
{{#travis-tab "general" "General Settings"}}
{{#settings-form class="settings-form"}}
<div class="settings-row">
<div class="short-settings-element">
{{travis-switch action="save" active=settings.builds_only_with_travis_yml}}
</div>
<label class="tipsy" title="Build only commits when a .travis.yml file is present in the git tree. Helps reduce builds when first setting up a project or when there are branches around the projects that don't need to be built.">
Build only if .travis.yml is present
</label>
</div>
<div class="settings-row">
<div class="short-settings-element">
{{travis-switch action="save" active=settings.build_pushes}}
</div>
<label class="tipsy" title="Build commits that are part of a branch.">
Build pushes
</label>
</div>
<div class="settings-row">
<div class="short-settings-element">
{{travis-switch action="save" active=settings.build_pull_requests}}
</div>
<label>
Build pull requests
</label>
</div>
<div class="settings-row">
<div class="short-settings-element">
{{input value=settings.maximum_number_of_builds size="4" pattern='/^[0-9]+$/'}}
</div>
<label>
Concurrent builds
</label>
</div>
{{/settings-form}}
{{/travis-tab}}
{{/travis-tabs}}
</div>