31 lines
923 B
Plaintext
31 lines
923 B
Plaintext
[% WRAPPER layout.tt title="Build machines" %]
|
|
[% PROCESS common.tt %]
|
|
|
|
<table class="table table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Enabled</th>
|
|
<th>Machine</th>
|
|
<th>Max concurrent</th>
|
|
<th>Speed factor</th>
|
|
<th>Systems</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH m IN machines %]
|
|
<tr>
|
|
<td><input type="checkbox" name="enabled" [% IF m.value.maxJobs > 0 %]CHECKED[% END %] disabled="true" /></td>
|
|
<td>[% HTML.escape(m.key) %]</a></td>
|
|
<td>[% HTML.escape(m.value.maxJobs) %]</td>
|
|
<td>[% HTML.escape(m.value.speedFactor) %]</td>
|
|
<td>
|
|
[% comma=0; FOREACH system IN m.value.systemTypes %][% IF comma; %], [% ELSE; comma = 1; END; HTML.escape(system); END %]
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
[% END %]
|