Changeset 16197
- Timestamp:
- 14/07/08 09:44:16 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/intermine/webapp/main/resources/webapp/WEB-INF/classes/InterMineWebApp.properties
r16195 r16197 432 432 433 433 # TOOLBAR (above results and bag page) 434 toolbar.noLists = no lists saved434 toolbar.noLists = no lists available 435 435 436 436 … … 785 785 projects.intro = All the projects in the ModEncode consortium. \ 786 786 NOTE: All external links open in a new window. 787 trunk/intermine/webapp/main/resources/webapp/bagDetails.jsp
r15810 r16197 39 39 <li id="tool_bar_li_use"><img style="cursor: pointer;" src="images/icons/null.gif" width="43" height="25" title="Use this list in a template or a query" border="0" id="tool_bar_button_use" class="tool_bar_button"/></li> 40 40 <c:if test="${myBag == 'true'}"> 41 <li id="tool_bar_li_edit"><img style="cursor: pointer;" src="images/icons/null.gif" width="56" height="25" alt="Edit" border="0" id="tool_bar_button_edit" class="tool_bar_button"></li>42 </c:if>41 <li id="tool_bar_li_edit"><img style="cursor: pointer;" src="images/icons/null.gif" width="56" height="25" alt="Edit" border="0" id="tool_bar_button_edit" class="tool_bar_button"></li> 42 </c:if> 43 43 <li class="tool_bar_separator"><span> // </span></li> 44 44 <li class="tool_bar_link"> … … 74 74 <div id="tool_bar_item_use" style="visibility:hidden;width:100px" class="tool_bar_item"> 75 75 <html:link action="/modifyBagDetailsAction.do?useBag=1&bagName=${bag.name}">in a query</html:link><br/> 76 <html:link action="/templates">in a template</html:link>76 <html:link action="/templates">in a template</html:link> 77 77 <hr/> 78 78 <a href="javascript:hideMenu('tool_bar_item_use')" ><fmt:message key="confirm.cancel"/></a> … … 80 80 81 81 <div id="tool_bar_item_edit" style="visibility:hidden;width:300px" class="tool_bar_item"> 82 <%-- add selected to bag --%>82 <%-- add selected to bag --%> 83 83 <c:choose> 84 <c:when test="${!empty PROFILE.savedBags }">84 <c:when test="${!empty PROFILE.savedBags && PROFILE.savedBags.size > 1}"> 85 85 Add selected to another list: 86 86 <html:select property="existingBagName"> … … 100 100 </c:otherwise> 101 101 </c:choose> 102 <br/>102 <br/><br/> 103 103 <%-- remove selected from bag --%> 104 104 <input type="submit" name="removeFromBag" id="removeFromBag" value="Remove selected" disabled="true" />
