Changeset 377 for trunk/grails-app/views/inventoryLocationDetailed/edit.gsp
- Timestamp:
- Feb 18, 2010, 3:09:18 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/inventoryLocationDetailed/edit.gsp
r178 r377 6 6 <meta name="layout" content="main" /> 7 7 <title>Edit InventoryLocation</title> 8 <nav:resources override="true"/> 8 9 </head> 9 10 <body> 10 11 <div class="nav"> 11 <span class="menuButton"><g:link class="list" action="list">InventoryLocation List</g:link></span> 12 <span class="menuButton"><g:link class="create" action="create">New InventoryLocation</g:link></span> 12 <nav:renderSubItems group="navAlt"/> 13 13 </div> 14 14 <div class="body"> 15 <h1>Edit InventoryLocation</h1>16 15 <g:if test="${flash.message}"> 17 16 <div class="message">${flash.message}</div> … … 40 39 <tr class="prop"> 41 40 <td valign="top" class="name"> 42 <label for="inventoryItems">Inventory Items:</label>43 </td>44 <td valign="top" class="value ${hasErrors(bean:inventoryLocationInstance,field:'inventoryItems','errors')}">45 46 <ul>47 <g:each var="i" in="${inventoryLocationInstance?.inventoryItems?}">48 <li><g:link controller="inventoryItem" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>49 </g:each>50 </ul>51 <g:link controller="inventoryItem" params="['inventoryLocation.id':inventoryLocationInstance?.id]" action="create">Add InventoryItem</g:link>52 53 </td>54 </tr>55 56 <tr class="prop">57 <td valign="top" class="name">58 41 <label for="inventoryStore">Inventory Store:</label> 59 42 </td> … … 72 55 </tr> 73 56 57 <tr class="prop"> 58 <td valign="top" class="name"> 59 <label for="inventoryItems">Inventory Items:</label> 60 </td> 61 <td valign="top" class="value ${hasErrors(bean:inventoryLocationInstance,field:'inventoryItems','errors')}"> 62 63 <ul> 64 <g:each var="i" in="${inventoryLocationInstance?.inventoryItems?}"> 65 <li><g:link controller="inventoryItemDetailed" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li> 66 </g:each> 67 </ul> 68 <g:link controller="inventoryItemDetailed" params="['inventoryLocation.id':inventoryLocationInstance?.id]" action="create">Add InventoryItem</g:link> 69 70 </td> 71 </tr> 72 74 73 </tbody> 75 74 </table> … … 77 76 <div class="buttons"> 78 77 <span class="button"><g:actionSubmit class="save" value="Update" /></span> 78 <span class="button"><g:actionSubmit class="cancel" value="Cancel" action="Show"/></span> 79 79 <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> 80 80 </div>
Note: See TracChangeset
for help on using the changeset viewer.