2013-02-20 15:54:33 +01:00
|
|
|
[% WRAPPER layout.tt title="Build machines" %]
|
2010-10-18 10:50:35 +00:00
|
|
|
[% PROCESS common.tt %]
|
|
|
|
|
2012-04-12 20:12:07 +02:00
|
|
|
<table class="table table-condensed table-striped">
|
2010-10-18 10:50:35 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Enabled</th>
|
|
|
|
<th>Machine</th>
|
|
|
|
<th>Max concurrent</th>
|
2012-04-17 16:53:11 +02:00
|
|
|
<th>Speed factor</th>
|
2013-03-04 16:03:04 -05:00
|
|
|
<th>Systems</th>
|
2010-10-18 10:50:35 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
[% FOREACH m IN machines %]
|
|
|
|
<tr>
|
2013-03-04 16:03:04 -05:00
|
|
|
<td><input type="checkbox" name="enabled" [% IF m.value.maxJobs > 0 %]CHECKED[% END %] disabled="true" /></td>
|
2025-08-02 18:20:35 +02:00
|
|
|
<td>[% HTML.escape(m.key) %]</a></td>
|
|
|
|
<td>[% HTML.escape(m.value.maxJobs) %]</td>
|
|
|
|
<td>[% HTML.escape(m.value.speedFactor) %]</td>
|
2013-03-04 16:03:04 -05:00
|
|
|
<td>
|
2025-08-02 18:20:35 +02:00
|
|
|
[% comma=0; FOREACH system IN m.value.systemTypes %][% IF comma; %], [% ELSE; comma = 1; END; HTML.escape(system); END %]
|
2013-03-04 16:03:04 -05:00
|
|
|
</td>
|
2010-10-18 10:50:35 +00:00
|
|
|
</tr>
|
|
|
|
[% END %]
|
|
|
|
</tbody>
|
2013-01-22 14:41:02 +01:00
|
|
|
|
2010-10-18 10:50:35 +00:00
|
|
|
</table>
|
|
|
|
|
|
|
|
[% END %]
|