Skip to content

Commit

Permalink
Merge pull request #7080 from jvanbraekel/patch-1
Browse files Browse the repository at this point in the history
Fix toolshed repository error display
  • Loading branch information
martenson committed Dec 6, 2018
2 parents 16f3be6 + 35fd290 commit b453f53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/admin/tool_shed_repository/manage_repository.mako
Expand Up @@ -36,7 +36,7 @@ ${render_galaxy_repository_actions( repository )}
</div>
<div class="form-row">
<label>Description:</label>
%if in_error_state:
%if repository.in_error_state:
${description|h}
%else:
<input name="description" type="textfield" value="${description|h}" size="80"/>
Expand All @@ -51,7 +51,7 @@ ${render_galaxy_repository_actions( repository )}
<label>Owner:</label>
${repository.owner|h}
</div>
%if in_error_state:
%if repository.in_error_state:
<div class="form-row">
<label>Repository installation error:</label>
${repository.error_message|h}
Expand All @@ -66,7 +66,7 @@ ${render_galaxy_repository_actions( repository )}
<label>Deleted:</label>
${repository.deleted|h}
</div>
%if not in_error_state:
%if not repository.in_error_state:
<div class="form-row">
<input type="submit" name="edit_repository_button" value="Save"/>
</div>
Expand All @@ -76,6 +76,6 @@ ${render_galaxy_repository_actions( repository )}
</div>
<p/>
${render_resolver_dependencies(requirements_status)}
%if not in_error_state:
%if not repository.in_error_state:
${render_repository_items( repository.metadata, containers_dict, can_set_metadata=False, render_repository_actions_for='galaxy' )}
%endif

0 comments on commit b453f53

Please sign in to comment.