forked from lix-project/hydra
edit-jobset.tt: disable when disabled by project and server
Also add a tooltip describing why it's disabled, to make it easier to chase down.
This commit is contained in:
parent
dfd3a67424
commit
6053e5fd4b
|
@ -160,7 +160,15 @@
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
<label class="col-sm-3" for="editjobsetenable_dynamic_run_command">Enable Dynamic RunCommand Hooks</label>
|
<label class="col-sm-3" for="editjobsetenable_dynamic_run_command">Enable Dynamic RunCommand Hooks</label>
|
||||||
<div class="col-sm-9">
|
<div class="col-sm-9">
|
||||||
<input type="checkbox" id="editjobsetenable_dynamic_run_command" name="enable_dynamic_run_command" [% IF jobset.enable_dynamic_run_command %]checked[% END %]/>
|
<input type="checkbox" id="editjobsetenable_dynamic_run_command" name="enable_dynamic_run_command"
|
||||||
|
[% IF !c.config.dynamicruncommand.enable %]
|
||||||
|
title="The server has not enabled dynamic RunCommands" disabled
|
||||||
|
[% ELSIF !project.enable_dynamic_run_command %]
|
||||||
|
title="The parent project has not enabled dynamic RunCommands" disabled
|
||||||
|
[% ELSIF jobset.enable_dynamic_run_command %]
|
||||||
|
checked
|
||||||
|
[% END %]
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue