<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%namespace file="/webapps/tool_shed/common/common.mako" import="*" /> <%namespace file="/webapps/tool_shed/repository/common.mako" import="*" /> <%namespace file="/webapps/tool_shed/common/repository_actions_menu.mako" import="render_galaxy_repository_actions" /> <%! def inherit(context): if context.get('use_panels'): return '/webapps/tool_shed/base_panels.mako' else: return '/base.mako' %> <%inherit file="${inherit(context)}"/> <%def name="stylesheets()"> ${parent.stylesheets()} ${h.css( "library" )} <%def name="javascripts()"> ${parent.javascripts()} ${h.js("libs/jquery/jquery.rating", "libs/jquery/jstorage" )} ${container_javascripts()} ${render_galaxy_repository_actions( repository=repository )} %if message: ${render_msg( message, status )} %endif
Repository '${repository.name | h}'
%if len( changeset_revision_select_field.options ) > 1:
<% if changeset_revision == repository.tip( trans.app ): tip_str = 'repository tip' else: tip_str = '' %> ${changeset_revision_select_field.get_html()} ${tip_str | h}
Select a revision to inspect and download versions of Galaxy utilities from this repository.
%else:
${revision_label}
%endif

${render_repository_items( metadata, containers_dict, can_set_metadata=False, render_repository_actions_for='galaxy' )}