hydra/src/root/machines.tt

40 lines
1.5 KiB
Plaintext
Raw Normal View History

2013-02-20 14:54:33 +00:00
[% WRAPPER layout.tt title="Build machines" %]
2010-10-18 10:50:35 +00:00
[% PROCESS common.tt %]
<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>
<th>Speed factor</th>
2010-10-18 10:50:35 +00:00
[% FOREACH s IN systems %]<th>[% s.system %]</th>[% END %]
</tr>
</thead>
<tbody>
[% FOREACH m IN machines %]
<tr>
<td><input type="checkbox" name="enabled" [% IF m.enabled == 1 %]CHECKED[% END %] onclick="window.location='[% IF m.enabled == 1 %][%c.uri_for('/admin/machine' m.hostname 'disable' )%][% ELSE %][%c.uri_for('/admin/machine' m.hostname 'enable' )%][% END %]'"/></td>
<td><a href="[% c.uri_for(c.controller('Admin').action_for('machine_edit'), [m.hostname]) %]">[% m.hostname %]</a></td>
2010-10-18 10:50:35 +00:00
<td>[% m.maxconcurrent %]</td>
<td>[% m.speedfactor %]</td>
[% FOREACH s IN systems %]
<td>
[% checked = false %]
[% FOREACH ms IN m.buildmachinesystemtypes %]
[% checked = ms.system == s.system %]
[% BREAK IF checked %]
[% END %]
<input type="checkbox" name="system" DISABLED [% IF checked %]CHECKED[% END %]/>
</td>
[% END %]
</tr>
[% END %]
</tbody>
2013-01-22 13:41:02 +00:00
2010-10-18 10:50:35 +00:00
</table>
<p><a class="btn" href="[% c.uri_for(c.controller('Admin').action_for('create_machine')) %]"><i class="icon-plus"></i> Add a new machine</a></p>
2010-10-18 10:50:35 +00:00
[% END %]