[116] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
| 7 | <title>Edit Site</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
| 11 | <span class="menuButton"><g:link class="list" action="list">Site List</g:link></span> |
---|
| 12 | <span class="menuButton"><g:link class="create" action="create">New Site</g:link></span> |
---|
| 13 | </div> |
---|
| 14 | <div class="body"> |
---|
| 15 | <h1>Edit Site</h1> |
---|
| 16 | <g:if test="${flash.message}"> |
---|
| 17 | <div class="message">${flash.message}</div> |
---|
| 18 | </g:if> |
---|
| 19 | <g:hasErrors bean="${siteInstance}"> |
---|
| 20 | <div class="errors"> |
---|
| 21 | <g:renderErrors bean="${siteInstance}" as="list" /> |
---|
| 22 | </div> |
---|
| 23 | </g:hasErrors> |
---|
| 24 | <g:form method="post" > |
---|
| 25 | <input type="hidden" name="id" value="${siteInstance?.id}" /> |
---|
| 26 | <input type="hidden" name="version" value="${siteInstance?.version}" /> |
---|
| 27 | <div class="dialog"> |
---|
| 28 | <table> |
---|
| 29 | <tbody> |
---|
| 30 | |
---|
| 31 | <tr class="prop"> |
---|
| 32 | <td valign="top" class="name"> |
---|
| 33 | <label for="name">Name:</label> |
---|
| 34 | </td> |
---|
| 35 | <td valign="top" class="value ${hasErrors(bean:siteInstance,field:'name','errors')}"> |
---|
| 36 | <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:siteInstance,field:'name')}"/> |
---|
| 37 | </td> |
---|
| 38 | </tr> |
---|
| 39 | |
---|
| 40 | <tr class="prop"> |
---|
| 41 | <td valign="top" class="name"> |
---|
| 42 | <label for="description">Description:</label> |
---|
| 43 | </td> |
---|
| 44 | <td valign="top" class="value ${hasErrors(bean:siteInstance,field:'description','errors')}"> |
---|
| 45 | <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:siteInstance,field:'description')}"/> |
---|
| 46 | </td> |
---|
| 47 | </tr> |
---|
| 48 | |
---|
| 49 | <tr class="prop"> |
---|
| 50 | <td valign="top" class="name"> |
---|
[268] | 51 | <label for="isActive">Is Active:</label> |
---|
[163] | 52 | </td> |
---|
[268] | 53 | <td valign="top" class="value ${hasErrors(bean:siteInstance,field:'isActive','errors')}"> |
---|
| 54 | <g:checkBox name="isActive" value="${siteInstance?.isActive}" ></g:checkBox> |
---|
[163] | 55 | </td> |
---|
| 56 | </tr> |
---|
| 57 | |
---|
| 58 | <tr class="prop"> |
---|
| 59 | <td valign="top" class="name"> |
---|
[273] | 60 | <label for="inventoryStores">Inventory Stores:</label> |
---|
| 61 | </td> |
---|
| 62 | <td valign="top" class="value ${hasErrors(bean:siteInstance,field:'inventoryStores','errors')}"> |
---|
| 63 | |
---|
| 64 | <ul> |
---|
| 65 | <g:each var="i" in="${siteInstance?.inventoryStores?}"> |
---|
[289] | 66 | <li><g:link controller="inventoryStoreDetailed" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li> |
---|
[273] | 67 | </g:each> |
---|
| 68 | </ul> |
---|
[289] | 69 | <g:link controller="inventoryStoreDetailed" params="['site.id':siteInstance?.id]" action="create">Add InventoryStore</g:link> |
---|
[273] | 70 | |
---|
| 71 | </td> |
---|
| 72 | </tr> |
---|
| 73 | |
---|
| 74 | <tr class="prop"> |
---|
| 75 | <td valign="top" class="name"> |
---|
[268] | 76 | <label for="sections">Sections:</label> |
---|
[116] | 77 | </td> |
---|
[268] | 78 | <td valign="top" class="value ${hasErrors(bean:siteInstance,field:'sections','errors')}"> |
---|
[116] | 79 | |
---|
| 80 | <ul> |
---|
[268] | 81 | <g:each var="s" in="${siteInstance?.sections?}"> |
---|
[289] | 82 | <li><g:link controller="sectionDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
[116] | 83 | </g:each> |
---|
| 84 | </ul> |
---|
[289] | 85 | <g:link controller="sectionDetailed" params="['site.id':siteInstance?.id]" action="create">Add Section</g:link> |
---|
[116] | 86 | |
---|
| 87 | </td> |
---|
| 88 | </tr> |
---|
| 89 | |
---|
| 90 | <tr class="prop"> |
---|
| 91 | <td valign="top" class="name"> |
---|
[268] | 92 | <label for="siteExtendedAttributes">Site Extended Attributes:</label> |
---|
[116] | 93 | </td> |
---|
[268] | 94 | <td valign="top" class="value ${hasErrors(bean:siteInstance,field:'siteExtendedAttributes','errors')}"> |
---|
[122] | 95 | |
---|
| 96 | <ul> |
---|
[268] | 97 | <g:each var="s" in="${siteInstance?.siteExtendedAttributes?}"> |
---|
[289] | 98 | <li><g:link controller="siteExtendedAttributeDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
[122] | 99 | </g:each> |
---|
| 100 | </ul> |
---|
[289] | 101 | <g:link controller="siteExtendedAttributeDetailed" params="['site.id':siteInstance?.id]" action="create">Add SiteExtendedAttribute</g:link> |
---|
[122] | 102 | |
---|
| 103 | </td> |
---|
| 104 | </tr> |
---|
| 105 | |
---|
[116] | 106 | </tbody> |
---|
| 107 | </table> |
---|
| 108 | </div> |
---|
| 109 | <div class="buttons"> |
---|
| 110 | <span class="button"><g:actionSubmit class="save" value="Update" /></span> |
---|
| 111 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 112 | </div> |
---|
| 113 | </g:form> |
---|
| 114 | </div> |
---|
| 115 | </body> |
---|
| 116 | </html> |
---|