Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jtobard committed Jun 22, 2018
1 parent 1f9c2c6 commit 51c167a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
32 changes: 16 additions & 16 deletions rundeckapp/grails-app/views/menu/_projectImportForm.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
<div class="list-group-item">
<h4 class="list-group-item-heading"><g:message code="imported.jobs"/></h4>
<div class="radio">
<input type="radio" name="jobUuidOption" value="preserve" checked/>
<label title="Original UUIDs will be preserved, conflicting UUIDs will be replaced">
<input type="radio" name="jobUuidOption" id="jobuuidpreserve" value="preserve" checked/>
<label title="Original UUIDs will be preserved, conflicting UUIDs will be replaced" for="jobuuidpreserve">
<g:message code="project.archive.import.jobUuidOption.preserve.label"/>
</label>
<p class="help-block"><g:message code="project.archive.import.jobUuidOption.preserve.description"/></p>
</div>
<div class="radio">
<input type="radio" name="jobUuidOption" value="remove"/>
<label title="New UUIDs will be generated for every imported Job">
<input type="radio" name="jobUuidOption" id="jobuuidremove" value="remove"/>
<label title="New UUIDs will be generated for every imported Job" for="jobuuidremove">
<g:message code="project.archive.import.jobUuidOption.remove.label"/>
</label>
<p class="help-block"><g:message code="project.archive.import.jobUuidOption.remove.description"/></p>
Expand All @@ -57,15 +57,15 @@
<div class="list-group-item">
<h4 class="list-group-item-heading"><g:message code="Execution.plural"/></h4>
<div class="radio">
<input type="radio" name="importExecutions" value="true" checked/>
<label title="All executions and reports will be imported">
<input type="radio" name="importExecutions" id="exectrue" value="true" checked/>
<label title="All executions and reports will be imported" for="exectrue">
<g:message code="archive.import.importExecutions.true.title"/>
</label>
<span class="help-block"><g:message code="archive.import.importExecutions.true.help"/></span>
</div>
<div class="radio">
<input type="radio" name="importExecutions" value="false"/>
<label title="No executions or reports will be imported">
<input type="radio" name="importExecutions" id="execfalse" value="false"/>
<label title="No executions or reports will be imported" for="execfalse">
<g:message code="archive.import.importExecutions.false.title"/>
</label>
<span class="help-block"><g:message code="archive.import.importExecutions.false.help"/></span>
Expand All @@ -74,17 +74,17 @@
<div class="list-group-item">
<h4 class="list-group-item-heading">Configuration</h4>
<div class="radio">
<input type="radio" name="importConfig" value="true" checked/>
<label title="">
<input type="radio" name="importConfig" id="configtrue" value="true" checked/>
<label title="" for="configtrue">
<g:message code="archive.import.importConfig.true.title"/>
</label>
<span class="help-block">
<g:message code="archive.import.importConfig.true.help"/>
</span>
</div>
<div class="radio">
<input type="radio" name="importConfig" value="false"/>
<label title="">
<input type="radio" name="importConfig" id="configfalse" value="false"/>
<label title="" for="configfalse">
<g:message code="archive.import.importExecutions.false.title"/>
</label>
<span class="help-block">
Expand All @@ -96,17 +96,17 @@
<div class="list-group-item">
<h4 class="list-group-item-heading">ACL Policies</h4>
<div class="radio">
<input type="radio" name="importACL" value="true" checked/>
<label title="">
<input type="radio" name="importACL" id="acltrue" value="true" checked/>
<label title="" for="acltrue">
<g:message code="archive.import.importACL.true.title"/>
</label>
<span class="help-block">
<g:message code="archive.import.importACL.true.help"/>
</span>
</div>
<div class="radio">
<input type="radio" name="importACL" value="false"/>
<label title="">
<input type="radio" name="importACL" id="aclfalse" value="false"/>
<label title="" for="aclfalse">
<g:message code="archive.import.importExecutions.false.title"/>
</label>
<span class="help-block">
Expand Down
8 changes: 4 additions & 4 deletions rundeckapp/grails-app/views/menu/executionMode.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
<g:hiddenField name="project" value="${params.project}"/>
<div>
<div class="radio">
<g:radio name="mode" value="active" checked="${g.executionMode(active: true)}"/>
<label>
<g:radio name="mode" value="active" id="activemode" checked="${g.executionMode(active: true)}"/>
<label for="activemode">
<g:icon name="play" />
<g:message code="system.executionMode.status.active"/>
<g:ifExecutionMode active="true"><g:message code="current.mode" /></g:ifExecutionMode>
Expand All @@ -62,8 +62,8 @@
</p>
</div>
<div class="radio">
<g:radio name="mode" value="passive" checked="${g.executionMode(active: false)}"/>
<label>
<g:radio name="mode" value="passive" id="passivemode" checked="${g.executionMode(active: false)}"/>
<label for="passivemode">
<g:icon name="pause" />
<g:message code="system.executionMode.status.passive"/>
<g:ifExecutionMode passive="true"><g:message code="current.mode" /></g:ifExecutionMode>
Expand Down

0 comments on commit 51c167a

Please sign in to comment.