[hg] galaxy 2855: Add missing tag to template for browing library.
details: http://www.bx.psu.edu/hg/galaxy/rev/d5a77c9e869e changeset: 2855:d5a77c9e869e user: Greg Von Kuster <greg@bx.psu.edu> date: Thu Oct 08 14:09:52 2009 -0400 description: Add missing tag to template for browing library. 1 file(s) affected in this change: templates/library/browse_library.mako diffs (27 lines): diff -r b9873946cada -r d5a77c9e869e templates/library/browse_library.mako --- a/templates/library/browse_library.mako Thu Oct 08 14:08:46 2009 -0400 +++ b/templates/library/browse_library.mako Thu Oct 08 14:09:52 2009 -0400 @@ -290,12 +290,8 @@ <ul class="manage-table-actions"> %if can_add: - <li> - <a class="action-button" href="${h.url_for( controller='library', action='upload_library_dataset', library_id=library.id, folder_id=library.root_folder.id )}"><span>Add datasets</span></a> - </li> - <li> - <a class="action-button" href="${h.url_for( controller='library', action='folder', new=True, obj_id=library.root_folder.id, library_id=library.id )}">Add folder</a> - </li> + <li><a class="action-button" href="${h.url_for( controller='library', action='upload_library_dataset', library_id=library.id, folder_id=library.root_folder.id )}"><span>Add datasets</span></a></li> + <li><a class="action-button" href="${h.url_for( controller='library', action='folder', new=True, obj_id=library.root_folder.id, library_id=library.id )}">Add folder</a></li> %endif %if can_modify: <li><a class="action-button" href="${h.url_for( controller='library', action='library', information=True, obj_id=library.id )}">Edit information</a></li> @@ -303,7 +299,7 @@ <li><a class="action-button" href="${h.url_for( controller='library', action='library', information=True, obj_id=library.id )}">View information</a></li> %endif %if can_add and not info_association: - <a class="action-button" href="${h.url_for( controller='library_common', action='info_template', cntrller='library', library_id=library.id, response_action='browse_library' )}">Add template</a> + <li><a class="action-button" href="${h.url_for( controller='library_common', action='info_template', cntrller='library', library_id=library.id, response_action='browse_library' )}">Add template</a></li> %endif %if can_manage: <li><a class="action-button" href="${h.url_for( controller='library', action='library', permissions=True, obj_id=library.id )}">Edit permissions</a></li>
participants (1)
-
Greg Von Kuster