<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%namespace file="/admin/tool_shed_repository/common.mako" import="render_dependencies_section" /> <%namespace file="/admin/tool_shed_repository/common.mako" import="render_readme_section" /> <%namespace file="/webapps/tool_shed/repository/common.mako" import="*" /> <%def name="stylesheets()"> ${parent.stylesheets()} ${h.css( "library" )} <%def name="javascripts()"> ${parent.javascripts()} ${h.js("libs/jquery/jquery.rating", "libs/jquery/jstorage" )} ${container_javascripts()} %if message: ${render_msg( message, status )} %endif
<% readme_files_dict = containers_dict.get( 'readme_files', None ) %> %if readme_files_dict:
Repository README files - may contain important installation or license information
${render_readme_section( containers_dict )}
%endif %if has_repository_dependencies or includes_tool_dependencies:
Confirm dependency installation
${render_dependencies_section( install_repository_dependencies_check_box, install_tool_dependencies_check_box, containers_dict, revision_label=None, export=False )} %endif %if shed_tool_conf_select_field:
Choose the configuration file whose tool_path setting will be used for installing repositories
<% if len( shed_tool_conf_select_field.options ) == 1: select_help = "Your Galaxy instance is configured with 1 shed-related tool configuration file, so repositories will be " select_help += "installed using its tool_path setting." else: select_help = "Your Galaxy instance is configured with %d shed-related tool configuration files, " % len( shed_tool_conf_select_field.options ) select_help += "so select the file whose tool_path setting you want used for installing repositories." %>
${shed_tool_conf_select_field.get_html()}
${select_help|h}
%else: %endif %if includes_tools_for_display_in_tool_panel:
${no_changes_check_box.get_html()}
Uncheck and select a different tool panel section to load the tools into a different section in the tool panel.
Add a new tool panel section to contain the installed tools (optional).
${tool_panel_section_select_field.get_html()}
Choose an existing section in your tool panel to contain the installed tools (optional).
%endif