Skip to content

Commit

Permalink
Edit review
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 6, 2017
1 parent 84ea089 commit 9fc4817
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -45,7 +45,7 @@ ${render_tool_shed_repository_actions( repository=repository, changeset_revision
</div>
<div class="form-row">
<label>Approve this repository revision?</label>
${revision_approved_select_field.get_html()}
${render_select(revision_approved_select_field)}
<div class="toolParamHelp" style="clear: both;">
Individual components below may be approved without approving the repository revision.
</div>
Expand Down Expand Up @@ -83,7 +83,7 @@ ${render_tool_shed_repository_actions( repository=repository, changeset_revision
# Initialize Private check box.
private_check_box_name = '%s%sprivate' % ( component_name, STRSEP )
private_check_box = CheckboxField( name=private_check_box_name, checked=private )
private_check_box = CheckboxField( name=private_check_box_name, value=private )
# Initialize star rating.
rating_name = '%s%srating' % ( component_name, STRSEP )
Expand All @@ -107,7 +107,7 @@ ${render_tool_shed_repository_actions( repository=repository, changeset_revision
<tr>
<td>
<label>Mark private:</label>
${private_check_box.get_html()}
${render_checkbox(private_check_box)}
<div class="toolParamHelp" style="clear: both;">
A private review can be accessed only by the owner of the repository and authorized repository reviewers.
</div>
Expand All @@ -128,7 +128,7 @@ ${render_tool_shed_repository_actions( repository=repository, changeset_revision
<tr>
<td>
<label>Approved:</label>
${approved_select_field.get_html()}
${render_select(approved_select_field)}
<div style="clear: both"></div>
</td>
</tr>
Expand Down

0 comments on commit 9fc4817

Please sign in to comment.