1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/f7de39159497/ Changeset: f7de39159497 User: dan Date: 2014-05-13 20:34:57 Summary: More Data Manager UI tweaks. Affected #: 1 file diff -r 1c913c980053c4ce2dc6425cdf102298488242ec -r f7de39159497fbcffb3f0ed785f26ecf56b40155 templates/webapps/galaxy/data_manager/index.mako --- a/templates/webapps/galaxy/data_manager/index.mako +++ b/templates/webapps/galaxy/data_manager/index.mako @@ -12,11 +12,11 @@ %if view_only: <p>Not implemented</p> %elif not data_managers.data_managers: - ${render_msg( "You do not currently have any Data Managers installed.", "warning" ) } + ${ render_msg( 'You do not currently have any Data Managers installed. You can install some from a <a href="%s">ToolShed</a>.' % ( h.url_for( controller="admin_toolshed", action="browse_tool_sheds" ) ), "warning" ) } %else: - <p>Choose your data managing option from below.</p> + <p>Choose your data managing option from below. You may install additional Data Managers from a <a href="${ h.url_for( controller='admin_toolshed', action='browse_tool_sheds' ) }">ToolShed</a>.</p><ul> - <li><strong>Run Data Manager Tools</strong> + <li><h3>Run Data Manager Tools</h3><div style="margin-left:1em"><ul> %for data_manager_id, data_manager in sorted( data_managers.data_managers.iteritems(), key=lambda x:x[1].name ): @@ -29,12 +29,12 @@ </div></li><p/> - <li><strong>View Data Manager Jobs</strong> + <li><h3>View Data Manager Jobs</h3><div style="margin-left:1em"><ul> %for data_manager_id, data_manager in sorted( data_managers.data_managers.iteritems(), key=lambda x:x[1].name ): <li> - <a href="${h.url_for( controller='data_manager', action='manage_data_manager', id=data_manager_id)}" target="galaxy_main"><strong>${ data_manager.name | h }</strong></a> - ${ data_manager.description | h }</a> + <a href="${ h.url_for( controller='data_manager', action='manage_data_manager', id=data_manager_id)}" target="galaxy_main"><strong>${ data_manager.name | h }</strong></a> - ${ data_manager.description | h }</a></li><p/> %endfor @@ -43,7 +43,7 @@ </li><p/><p/> - <li><strong>View Tool Data Table Entries</strong> + <li><h3>View Tool Data Table Entries</h3><div style="margin-left:1em"><ul><% managed_table_names = data_managers.managed_data_tables.keys() %> Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.