forked from lix-project/hydra
parent
adc72d2409
commit
fa1e043526
|
@ -146,7 +146,7 @@ BLOCK renderSelection;
|
||||||
[% END %]
|
[% END %]
|
||||||
</div>
|
</div>
|
||||||
[% ELSE %]
|
[% ELSE %]
|
||||||
<select [% HTML.attributes(id => param, name => param) %]>
|
<select style='width: 15em;' [% HTML.attributes(id => param, name => param) %]>
|
||||||
[% FOREACH name IN options.keys.sort %]
|
[% FOREACH name IN options.keys.sort %]
|
||||||
<option [% IF name == curValue; "selected='selected'"; END; " "; HTML.attributes(value => name) %]>[% options.$name %]</option>
|
<option [% IF name == curValue; "selected='selected'"; END; " "; HTML.attributes(value => name) %]>[% options.$name %]</option>
|
||||||
[% END %]
|
[% END %]
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td id="[% baseName %]">
|
<td id="[% baseName %]">
|
||||||
[% alt = input.search_related('jobsetinputalts', {altnr => 0}) %]
|
[% alt = input.search_related('jobsetinputalts', {altnr => 0}) %]
|
||||||
<input type="text" [% HTML.attributes(value => alt.value, id => "$baseName-value", name => "$baseName-value") %]/>
|
<input style="width: 95%" type="text" [% HTML.attributes(value => alt.value, id => "$baseName-value", name => "$baseName-value") %]/>
|
||||||
[% IF input.jobsetinputalts_rs.count > 1 %]
|
[% IF input.jobsetinputalts_rs.count > 1 %]
|
||||||
<div class="alert alert-warning">Warning: This input had more
|
<div class="alert alert-warning">Warning: This input had more
|
||||||
than one value. This is no longer supported. The additional
|
than one value. This is no longer supported. The additional
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
[% BLOCK renderJobsetInputs %]
|
[% BLOCK renderJobsetInputs %]
|
||||||
<table class="table table-striped table-condensed">
|
<table class="table table-striped table-condensed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr><th></th><th>Input name</th><th>Type</th><th>Value</th><th>Notify committers</th></tr>
|
<tr><th></th><th>Input name</th><th>Type</th><th style="width: 50%">Value</th><th>Notify committers</th></tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="inputs">
|
<tbody class="inputs">
|
||||||
[% FOREACH input IN jobset.jobsetinputs %]
|
[% FOREACH input IN jobset.jobsetinputs %]
|
||||||
|
|
Loading…
Reference in a new issue